pass statement is sued to represent Null Statements
Example:
for a in range(1,11): if a%3==0: pass else: print(a)