functions
#Functions are really useful when you have things that you want to do over and over
def say_hello():
print('hellooo')
say_hello()INFO
#Functions are really useful when you have things that you want to do over and over
def say_hello():
print('hellooo')
say_hello()