Files
programming-examples/python/Tuple/Python program to convert a tuple to a string.py
Michael Reber b880c3ccde Initial commit
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)