Difference Between = (single equal to) and == (double equal to) in Python Programming Language:
▪ The = (single equal to) is use to assign the value on the right to a variable
on the left.
▪ The == (double equal to) is use to compare to two values.
Top comments (2)
does
=
and==
represent different differences in older python versions?No