python输入['a','b','c','d','e'] 如何得出abcde
s = ['a','b','c','d','e'] print(''.join(s))
使用join()方法,将序列中的元素以指定字符拼接成新的字符串