103k views
5 votes
What is the output?

x = 6 % 2

if x == 1:
print("ONE")

else:
print("TWO")

User Peolss
by
5.8k points

1 Answer

3 votes

Answer:

The output would be "TWO".

User RedSIght
by
6.0k points