我是python的新手,我想知道如何将用户输入放入数组
例如:
usersentence = input("Type out the sentence: ")
我想将用户输入的内容放入数组中,我对如何操作感到困惑。我的程序识别该单词在句子中的位置,并忽略标点符号以及是否为大写字母。
谢谢你的帮助!
答案 0 :(得分:0)
您可以将项目放在如下列表中:
usersentence = [input("Type out the sentence: ")]
print(usersentence)
>>> Type out the sentence: hello world
>>> ['hello world']
如果您希望每个列表项都有一个单词:
usersentence = input("Type out the sentence: ").split()
print(usersentence)
>>> Type out the sentence: hello world
>>> ['hello', 'world']