Python - Conditional Statements
What will be the output of this code?
num = 7
if num % 2 == 0:
print('Even')
else:
print('Odd')num = 7
if num % 2 == 0:
print('Even')
else:
print('Odd')15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions