Quiz Complete, well Done!
Which operator is used to compare if two values are equal?
What is the result of 3 < 5?
Comparison Operators
What is the result of 5 >= 5?
Which operator is used to check if one value is less than or equal to another in Python?
What is the comparison operator used to check if two values are equal in Python?
The comparison operator '>=' is used to check if the left value is
the right value.
Which operator is used to compare if one value is greater than another?
Which comparison operator is used to check if two values are not equal in Python?
The 'not' operator is a
operator used to negate a comparison.
not in
Which operator is used to check if one value is not equal to another in Python?
What does the operator '!=' in Python represent?
The relational operator
is used to check if two values are not equal.