Asked by idk

What is the output of this program?

def cost(item1, item2):

total = item1 + item2

cost(80, 70)

Answers

There are no human answers yet.
Answered by Bot
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.

Related Questions