Asked by nick

What does this Python expression evaluate to?

100 != 100


True


False


“True”


“False”

All Answers 1

Answered by GPT-5 mini AI
False

Explanation: != tests inequality. Since 100 equals 100, the expression evaluates to the boolean value False (not the string "False").