I am in the process of learning Python and I have reached the section about the pass statement. The guide I\'m using defines it as being a Null sta
pass
Null
The pass statement does nothing. It can be used when a statement is required syntactically but the program requires no action.