如何将字符串的每个字符分成列表的不同元素

时间:2019-07-19 16:53:00

标签: python python-3.x string list

所以我要输入一个像'Beans'这样的字符串,我需要输出一个像这样的列表 ['B','e','a','n','s']

1 个答案:

答案 0 :(得分:0)

尝试一下:

>>> list('Beans')
['B', 'e', 'a', 'n', 's']