编写Python出现 expected an indented block

Python中没有分号,用严格的缩进来表示上下级从属关系。导致excepted an indented block这个错误的原因一般有两个:
1. 冒号后面是要写上一定的内容的(新手容易遗忘这一点),例如

 

try: 

    something 

else: 

    #else后面的内容由于不是很重要而忘了写 

  • 1
  • 2
  • 3
  • 4
  • 5


2. 缩进不严格,导致少了或者多了一个空格 --------------------- 本文来自 _Naive_ 的CSDN 博客 ,全文地址请点击:https://blog.csdn.net/qq_28301007/article/details/79009980?utm_source=copy

你可能感兴趣的:(Python)