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
as the book said, I only ever use it as a temporary placeholder, ie,
# code that does something to to a variable, var if var == 2000: pass else: var += 1
and then later fill in the scenario where var == 2000
var == 2000