python 元组转字符串

tup = ('e', 'x', 'e', 'r', 'c', 'i', 's', 'e', 's')  
str =  ''.join(tup)  
print(str)
原文地址:https://www.cnblogs.com/sea-stream/p/9945035.html