let's say that I have string:
s = "Tuple: "
and Tuple (stored in a variable named tup):
(2, a, 5)
I'm trying to get my string to contain the value "Tuple: (2, a, 5)". I noticed that you can't just concatenate them. Does anyone know the most straightforward way to do this? Thanks.