一、RE
1、错误认为input()是以空格为界输入
noi OJ的题:03:对齐输出,python3,runtime error如何解决?-编程语言-CSDN问答
二、编译器报错
- IndentationError: unexpected indent
缩进错误。
原因是,我只写把自己在csdn写的代码复制到了vscode里,导致一些细微的缩进看不出来(比如四个空格和tab的区别等等
可以看下python报"IndentationError: unexpected indent"的解决方法._武晓兵的博客-CSDN博客_unexpected indent
实在不行可能只能从头重新输入代码。
三、划线
- 红线
缩进错误:
Unindent amount does not match previous indent Pylance
if 与 elif没对齐
四、不报错的错误
1、
sys.exit() 写为 sys.exit
结果:无法关闭对话框
2、
做游戏操纵飞船移动时,按↓却往上走。因为pygame中,y增加是往下走。