Write a Python program to convert a tuple to a string.
Topic: Write a Python program to convert a tuple to a string.
Solution
tup = ('e', 'x', 'e', 'r', 'c', 'i', 's', 'e', 's') str = ''.join(tup) print(str)
List all Python Programs
Solution
tup = ('e', 'x', 'e', 'r', 'c', 'i', 's', 'e', 's') str = ''.join(tup) print(str)