def example(): #This defines it print("Example.") #This is the defined commands example() #And this is the commands being run
def function_name(): pass
def add(number): equation = 5 + number print(equation) add(10) output: 15
def a_function(input1): return input1 * 2