what to write when you want to pass something in python code example
Example: Python Pass
if(condition): (if this condtion is true)
pass (do not performance any operation)
else:
Statements (So only else will execute when condition false)