gpt4 book ai didi

syntax-error - 范围函数声明中的语法错误

转载 作者:行者123 更新时间:2023-12-03 08:25:24 25 4
gpt4 key购买 nike

关闭。这个问题是not reproducible or was caused by typos .它目前不接受答案。












想改进这个问题?将问题更新为 on-topic对于堆栈溢出。

2年前关闭。




Improve this question




范围函数语法错误 enter image description here

for x in range(20),
if x % 2 == 0
print x
else
print 'odd',

输出:

File "<ipython-input-106-a3bbe30e4016>", line 1
for x in range(20),
^
SyntaxError: invalid syntax

最佳答案

只需将第一行中的逗号替换为 :然后,在 Python 3.x 中,写入 print("toto")而不是 print "toto" .
最后,一个if的结尾条件需要 : (如 foorwhile 循环)

for x in range(20):
if x % 2 == 0:
print(x)
else:
print('odd')

关于syntax-error - 范围函数声明中的语法错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61074884/

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