Question: Executing the code will throw an error. Can you explain why?

a = 1
b = 2
print(a == b)
print(b == c)

Hint:Operator==is a comparison operator.