pass: 常用于代码占位
a = 10 if a > 100: pass
当设计代码时,有些条件或代码还没有想好要如何处理,先用pass做占位,后续可以回来继续写。如果不写pass则会报错,因为代码不完整。