Example:
a = ( 1, 2, 3, 4 )
print( 'Test %s' % (a) ) # this will generate error not all arguments converted during string formatting
print( 'Test %s' % (a,) ) # this will print 'Test (1,2,3,4)'
Does this mean that it will just convert the whole list (including the brackets) to a string?
I just would like to confirm the above question.