Computer Science, asked by vravinandan123, 4 months ago

Choose the correct option according to Python Version 2.7
What is the output of this python code?
print (7 > 10)
print (4 < 16)
print (4 == 4)
print (4 <= 4)
print (4 != 4)​

Answers

Answered by aryamore59
0

Answer:

false

true

true

true

false

Explanation:

Similar questions