let\'s say that I have string:
s = \"Tuple: \"
and Tuple (stored in a variable named tup):
(2, a, 5)
>>> tup = (2, "a", 5) >>> s = "Tuple: {}".format(tup) >>> s "Tuple: (2, 'a', 5)"