Tags
November 2nd, 7:57am
0 comments
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...
Posted 8 months ago

Comments (0)
Leave a comment...