Question: Consider the below definition for the function combo. Which of the following function calls would print out False? def combo( a,b,c=2) : return a==2 or
Consider the below definition for the function combo. Which of the following function calls would print out False? def combo( a,b,c=2) : return a==2 or b==2 or c==0 A. print(combo(1,2,0)) B. print(combo(2,1,0)) C. print(combo(2,2,0)) D. print(combo(3,1,0) ) E. print (combo (3, 1, 1))
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
