What is the output of this program?
def cost(item1, item2):
total = item1 + item2
cost(80, 70)
1 answer
There is no output as the function is defined but not called. If the function was called and printed the total, the output would be 150.