def functionName(): # What to make the function do # Basic Example def addNum(num1, num2): print(num1 + num2) # To call this function addNum(2, 4) # Output: 6