gpt4 book ai didi

python - 在 python 中打印列表

转载 作者:太空宇宙 更新时间:2023-11-04 06:49:04 26 4
gpt4 key购买 nike

<分区>

我在尝试用 Python 打印列表时遇到问题。我想用以下代码打印出列表中的所有项目,特别是最后两行。

def primefind(n):
mylist = []
x = 3
while (x < n/2):
if ((n % x) == 0):
mylist.append(x)
x = x + 2
for item in mylist:
print item

当我运行它时出现语法错误。它在最后一行突出显示“item”。据我所知,它在语法上是正确的,所以我很困惑!甚至这个网站也显示了与我使用的相同的语法 http://effbot.org/zone/python-list.htm#looping

我哪里出错了?

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