Alex V
0
Q:

python pass

# Allow a statement to be empty during the code inspection
# avoid an Error to be thrown 

#Exemple :
for i in range(10):
  pass				# this segment do nothing
5
if(condition): (if this condtion is true)
    pass    (do not performance any operation)
else:
    Statements (So only else will execute when condition false)
5
def example(): #This would produce a error if we left it.
  
def example2(): # This would not produce a error
  pass 
5
def shout(text):  
    return text.upper()  
    
yell = shout  
    
print(yell('Hello')) 
#output: HELLO
1
# Pass it's used when need have something to fill something an not implemented
# function...
def notImplementedFunction():
  pass
0

New to Communities?

Join the community