Run
tuple1 = ('p', 'y', 't', 'h', 'o', 'n') str = '' for item in tuple1: str = str + item print(str)
Output