Computer Science, asked by nareshnbjk6118, 7 days ago

x = 9 % 2 if (x == 1): print ("ONE") else: print ("TWO")

Answers

Answered by GuligorlaKiranKumar
1

Answer:

TWO

Explanation:

here x=9%2 means the remainder is 4 so x!=1 so ot prints TWO

Similar questions