more() in python code example

Example 1: if statements python

water = input('Does your creature live underwater?')
if water == 'yes':
	print('Your creature lives underwater')
else:
	print('Your creature does not live underwater')

Example 2: keyword for empty function to continue the block python

# Correct way of writing empty function 
# in Python 
def fun(): 
	pass

  
# Empty loop in Python 
mutex = True
while (mutex == True) : 
	pass

  
# Empty in if/else in Python 
mutex = True
if (mutex == True) : 
	pass
else : 
	print("False")