1、列表转字符串
用.join()
l = ['a','b','c','d'] print(''.join(l)) #输出结果 'abcd'
2、字符串转列表
用.split()
s = "what's your name" l = s.split(' ') #输出结果 "what's your name"
1、列表转字符串
用.join()
l = ['a','b','c','d'] print(''.join(l)) #输出结果 'abcd'
2、字符串转列表
用.split()
s = "what's your name" l = s.split(' ') #输出结果 "what's your name"
转载于:https://www.cnblogs.com/francischeng/p/9685203.html