#CS-6207
Awesome StudentQuestion • Programming Languages with Compiler

What is the output of the following program?defisEven(num): return num % 2 = 0 if isEven(3): print("3 is even") else: print("3 is not even")

Answer

3 is not even