Chapter 5 Functions
def fun1 (a, b): a = a + b return a when this function is called with x and y x = 5 y = 7 p = fun1 (x, y) x is still 5 when the function is done, NOT 12!
start = 0 for i in [3, 5, 1, 2, 7]: start = start + i print("Total is", start)