Explore Library
Code QuizBeginner

Comparison Operators

Find the mistake in this equality check.

Codepython
x = 5
if x = 5:
    print("equal")

What is the bug in this code?