我想知道如何接受用户输入并列出其中的每个字符。

magicInput = input('Type here: ')

并说您输入了“ python 石”
我想要一个这样的 list
magicList = [p,y,t,h,o,n, ,r,o,c,k,s]

但是,如果我这样做:
magicInput = input('Type here: ')
magicList = [magicInput]

magicList只是
['python rocks']

最佳答案

使用内置的list()函数:

magicInput = input('Type here: ')
magicList = list(magicInput)
print(magicList)

输出
['p', 'y', 't', 'h', 'o', 'n', ' ', 'r', 'o', 'c', 'k', 's']

10-07 16:14