This is one of the most commonly misused Python features and it fails silently, which makes it especially dangerous in production code.

a = "hello"

b = "hello"

print(a == b)

print(a is b)