1#How to define a function
2
3def new_function(): #Creates a new function
4 print("Function is here!") #Here we write what we want our function to do
5
6#How to call a funtion
7
8new_function() #Just type in the fuction's name and add brackets after it!