if(condition): (if this condtion is true)
pass (do not performance any operation)
else:
Statements (So only else will execute when condition false)
def example(): #This would produce a error if we left it.
def example2(): # This would not produce a error
pass
# For empty python shtuff, if you don't have the code for funcs (etc) and you don't want to have the indented block error, you can use this.
def helloooo():
pass
helloooo()
# Works perfectly!
#Pass is plug for your for your constructions
#You can use it to get rid of the compiler error about empty constructions
def SomeFunction():
pass
#this function do nothing
def myEmptyFunc():
# do nothing
pass
myEmptyFunc() # nothing happens
## Without the pass keyword
# File "<stdin>", line 3
# IndentationError: expected an indented block
# pass in python is basically a placeholder thing to put in empty functions/classes
# example
def whatever():
pass
class whatever():
pass
'''pass is just a placeholder for
functionality to be added later.'''
sequence = {'p', 'a', 's', 's'}
for val in sequence:
pass