1#How to add a function in python
2
3#Function
4def new_function(): #Tells python to define a function
5 print("Hello World!") #Here is where we put what the function should do
6
7#Calling a function
8new_function()
9#Calling a function allows us to use the function at a specific time in our code