130k views
3 votes
In Python the _____ symbol is used as the equality operator.

==
=
>=
<=

User Regg
by
7.7k points

1 Answer

3 votes

Answer:

The correct answer is "==" in Python, which is used as the equality operator to check if two values are equal.

The single "=" symbol is used for assignment, while ">=", "<=", and other symbols are used for comparison operators to check if one value is greater than or equal to, or less than or equal to, another value.

User Vmp
by
7.6k points