SyntaxError: expected an indented block>>> 编写到这来就出错了 拿IDLE编写的 表示出错是重新编写还是咋的 万分感谢 百度不到不是伸手党,就是比较笨 唐伯虎电纹香 贡士 7 if def后面都要缩进python对缩进要求比较严格 亲爱的 童生 2 louiswi 举人 4 try后面缩进,还有缩进是四个空格,不是tab 黄哥...
看到别的博客说是缩进的问题,但是我的代码并没有出现缩进的问题,于是我看到代码中有一条红色波浪线,是注释的问题 把单行注释改成多行注释的引号即可
文件“demo_indentation_test.py”,第 2 行 print(“五大于二!”) ^ IndentationError: expected an indented block - Python 在Python中,缩进是一种语法,它指示代码块的范围。Python程序通常使用空格或制表符作为缩进,函数和条件语句都需要使用缩进来表示代码块的范围。
According to PEP-8 on block styles, it merely says: Block comments generally apply to some (or all) code that follows them, and are indented to the same level as that code. The existing E115 is supposed to check this. However, the follow...