# 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
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
# ---------------------------
# -- Continue, Break, Pass --
# ---------------------------
myNumbers = [1, 2, 3, 5, 7, 10, 13, 14, 15, 19]
# Continue ==> Skip The ( Specific Element ) And Continue
for numbers in myNumbers :
if numbers == 13 :
continue
print( numbers )
print( "_" * 100 ) # -- Separator --
# Pass ==> Skip Any Program If I Completed Or Not
for numbers in myNumbers :
pass
print( "Here We Have 'pass'." )
print( "_" * 100 ) # -- Separator --
# Break ==> Stop The Function
for numbers in myNumbers:
if numbers == 13:
break
print( numbers )
#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
# Pass it's used when need have something to fill something an not implemented
# function...
def notImplementedFunction():
pass
Is a null statement for classes and functions