Question #211

What is the output of the code snippet below?
print(1<2<3<4)

This will return True as Python support chained comparison. (geeksforgeeks.org/chaining-comparison-operators-python)


Comment on Disqus:

Comment on Twitter:

Question difficulty: 🔵🔵🔵🔵🔵


Similar questions: