how to stop a function in python code example
Example 1: stop procedure python
def some_fuction():
print("This is all I do!")
return
# A simple return will end a function
Example 2: end= meaning in python
#its a space in python 3
#and a \n(newline) in python 2
Example 3: python how to exit function
return None