gpt4 book ai didi

Python 错误 "IndentationError: expected an indented block"

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

这是我的程序,我收到以下提到的错误:

def main():
print "hello"

if __name__=='__main__':
main()

错误

  File "hello.py", line 8
main()
^
IndentationError: expected an indented block

最佳答案

您的缩进已关闭。试试这个:

def main():
print "hello"

if __name__=='__main__':
main()

所有功能 block 以及 if-else 循环 block 都必须缩进一个制表符或 4 个空格(取决于环境)。

if condition :
statements //Look at the indentation here
...
Out-of-block //And here

引用this进行一些解释。

关于Python 错误 "IndentationError: expected an indented block",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14069096/

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