So, i have this problem. I got tuple (1,2,3) which i should print with string formatting. eg.
tup = (1,2,3)
print "this is a tuple %something" % (tup)
and this should print tuple representation with brackets, like
This is a tuple (1,2,3)
But I get TypeError: not all arguments converted during string formatting
instead.
How in the world am I able to do this? Kinda lost here so if you guys could point me to a right direction :)
See Question&Answers more detail:os