Question #923

What is the output of the code snippet below?
print((True==False==True)==False)

First, True==False==True evaluates as False . Then False==False evaluates as True . (geeksforgeeks.org/chaining-comparison-operators-python)


Comment on Disqus:

Question difficulty: 🔵🔵🔵🔵🔵