3 lines
90 B
Python
3 lines
90 B
Python
|
tup = ('e', 'x', 'e', 'r', 'c', 'i', 's', 'e', 's')
|
||
|
str = ''.join(tup)
|
||
|
print(str)
|