def function_2(a,b)
if a < 2
return b
else:
return b
Answers
Answered by
0
Answer:
b
Explanation:
it will always return b no matter what the value of a and b
AlastorMadEyeMoody:
what error
def function_2(a,b)
^
SyntaxError: invalid syntax
Similar questions