gpt4 book ai didi

Python - 使用 IDLE 和 if - else block 时出现缩进错误,在命令行上工作正常

转载 作者:行者123 更新时间:2023-11-28 16:49:28 25 4
gpt4 key购买 nike

我收到以下缩进错误

>>> number = 35
>>> if number == 35:
print 'true'
else:

File "<pyshell#130>", line 3
else:

^
IndentationError: unindent does not match any outer indentation level
>>>

这只发生在 IDLE 而不是命令行。我在 Windows XP 上使用 Python 2.6.4。我在网上搜索过,但找不到关于为什么会出现此错误的任何答案。感谢您的帮助。

并添加 - 复制和粘贴时,代码可能看起来缩进不正确。但是它在 IDLE 界面上被正确地缩进了。

最佳答案

>>> number = 35
>>> if number == 35:
... print 'true'
... else:
... print 'false'
...
true
>>>

正确地手动缩进代码

关于Python - 使用 IDLE 和 if - else block 时出现缩进错误,在命令行上工作正常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9498107/

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