标签: python python-3.x string list
所以我要输入一个像'Beans'这样的字符串,我需要输出一个像这样的列表 ['B','e','a','n','s']
答案 0 :(得分:0)
尝试一下:
>>> list('Beans') ['B', 'e', 'a', 'n', 's']