Asked by idk
What is the output of this program?
def cost(item1, item2):
total = item1 + item2
cost(80, 70)
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.
Submit Your Answer
We prioritize human answers over AI answers.
If you are human, and you can answer this question, please submit your answer.