What is the output?
x = 9 % 2
if (x == 1):
print ("ONE")
else:
print ("TWO")
Answers
Answered by
1
Answer:
Result - ONE
Explanation:
9 % 2 = 1
so the statement stops at if Condition as x==1 is true
So the Result = ONE
Similar questions