Question: In python language A. When this function is called in line 9, the argument candy becomes what value? (Enter an number)2 B. When this function

In python language
A. When this function is called in line 9, the argument candy becomes what value? (Enter an number)2 B. When this function is called in line 10, the argument candy becomes what value? (Enter an number) 11 C. What is the most candy possible for the result of the function call at line 107(Enter an number) 17 1 import random 2 def trickOrTreat(houses, candy O): 3 for house in range(houses): 4 result random.choice(["trick!", "treat!"]) 5 print(result) 6 f results: "treat!": candy +1 8 return candy #main 9 print trickOrTreat(3) 10 print(trickOrTreat(5, 10))
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
