An Introduction to Python - pass Statements
4.5
passStatementsThe
passstatement does nothing. It can be used when a statement is required syntactically but the program requires no action. For example:>>> while True: ... pass # Busy-wait for keyboard interrupt ...
I don't like this style...