当前位置: 代码迷 >> 综合 >> Python学习(二)-常见问题(3)IndentationError: unindent does not match any outer indentation level
  详细解决方案

Python学习(二)-常见问题(3)IndentationError: unindent does not match any outer indentation level

热度:90   发布时间:2023-12-01 16:40:47.0

Python学习(二)-常见问题(3)IndentationError: unindent does not match any outer indentation level

 

以下代码最后一行语句缩进数的空格数不一致,会导致运行错误:

 

cat b.py 
#!/usr/bin/python
if True:print ("Answer")print ("Ture")
else:print ("Answer")print ("False")     ##缩进不一致会导致致命错误

执行结果:

 

./b.py File "./b.py", line 8print ("False")     ##缩进不一致会导致致命错误^
IndentationError: unindent does not match any outer indentation level

 

 

  相关解决方案