gpt4 book ai didi

python - 创建列表

转载 作者:太空宇宙 更新时间:2023-11-04 09:11:25 28 4
gpt4 key购买 nike

我遇到了这个问题,我应该编写一个程序来吃掉几个单词(用逗号分隔)并用这些单词吐出一个干净的列表。我无法解决我的问题。有什么想法吗?

def wordlist(word):
return word.split(',')

def main ():
sentence = input("write a few words and seperate them with , ")
splitsentence = wordlist(sentence)
for item in splitsentence:
print(item)

main()

最佳答案

您每次都打印列表而不是您正在迭代的特定项目:

代替 print(splitsetnence),您需要 print(item)

def main():
sentence = input("write a few words and separate them with ,")
splitsentence = wordlist(sentence)
for item in splitsentence:
print (item)

此外,请注意您的缩进。原始帖子中的代码缩进看起来不正确。

关于python - 创建列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14549860/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com