Question: Given the function below, what would print after the call: fun(-5) def fun(x): if (x > 0): print(x) else: print(-1*x) Question 6 options: 0 5
Given the function below, what would print after the call: fun(-5) def fun(x): if (x > 0): print(x) else: print(-1*x) Question 6 options: 0 5 -5 "-1*x
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
