Statement : Pass : Language Basics PYTHON examples


PYTHON examples » Language Basics » Pass »

 

Statement


Statement: pass


# The pass statement 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

           
       



    Related Scripts with Example Source Code in same category :

Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON examples

 Navioo Language Basics
» Pass