用相应格式的字符串将序列链接起来。 a = ['wo','hao','shuai'] print("".join(a)) 'wohaoshuai' print("-".join(a)) wo-hao-shuai