Python pass 关键字
Python基础 2022-06-06 16:26:57小码哥的IT人生shichen
Python pass 关键字
实例
为未来的代码创建一个占位符:
for x in [0, 1, 2]:
pass
完整实例:
for x in [0, 1, 2]:
pass
# having an empty for loop like this, would raise an error without the pass statement
定义和用法
pass 语句用作未来代码的占位符。
当执行 pass 语句时,什么也不会发生,但是在不允许空代码的情况下,可以避免出现错误。
循环、函数定义、类定义或 if 语句中不允许使用空代码。
更多实例
实例 1
在函数定义中使用 pass 关键字:
def myfunction:
pass
完整实例:
def myfunction:
pass
# having an empty function definition like this, would raise an error without the pass statement
实例 2
在类定义中使用 pass 关键字:
class Person:
pass
完整实例:
class Person:
pass
# having an empty class definition like this, would raise an error without the pass statement
实例 3
在 if 语句中使用 pass 关键字:
a = 33
b = 200
if b > a:
pass
完整实例:
a = 33
b = 200
if b > a:
pass
# having an empty if statement like this, would raise an error without the pass statement