What does the term pass mean in python?
本问题已经有最佳答案,请猛点这里访问。
在python中pass是什么意思?我已经看到它被使用了,我不明白你为什么需要使用它,或者它做什么?我想我可以说它传递了它所包含的任何函数,但是为什么要包含它呢?
博士:
The pass statement does nothing. It can be used when a statement is required syntactically but the program requires no action.
参考文献:
- https://docs.python.org/2/reference/simple_stmts.html pass语句
- https://docs.python.org/2/tutorial/controlflow.html pass语句
"当语句在语法上是必需的,但您不希望执行任何命令或代码时,可以使用它。
pass语句是一个空操作;执行时不会发生任何事情。在代码最终会消失但尚未写入的地方(例如,在存根中),pass也很有用:https://www.tutorialspoint.com/python/python_pass_statement.htm网站