Python Program to Convert Tuple to String

tuple1 = ('c', 'h', 'a', 's', 'e')
#tuple to string
str = ''.join(tuple1)
print(str)

OUTPUT:

chase

Sharing Is Caring

Leave a Comment