Quiz Complete, well Done!
Which comparison operator is used to check if one value is greater than or equal to another in Python?
What is the comparison operator used to check if two values are equal in Python?
What is the value of 3.5 == 3?
The comparison operator '>' is used to check if the left value is
the right value.
Which operator is used to check if one value is less than or equal to another in Python?
The comparison operator '==' is used to check if two values are
.
The comparison operator '>=' is used to check if the left value is
the right value.
Comparison Operators
What is the result of 3 < 5?
The comparison operator '!=' is used to check if two values are
.
What does the operator '<' in Python represent?
The 'not' operator is a
operator used to negate a comparison.
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 'or' operator is a
operator used for more complex comparisons.
What is the opposite of the operator '>=' in Python?