programming-examples/python/Tuple/Python program to convert a tuple to a string.py
2019-11-15 12:59:38 +01:00

3 lines
90 B
Python

tup = ('e', 'x', 'e', 'r', 'c', 'i', 's', 'e', 's')
str = ''.join(tup)
print(str)