Developer Documentation Library > Scripting > Expressions > Operators > Comparison operators > Greater than or equal to (>=) operator
 
Greater than or equal to (>=) operator
Numeric variables
mammals >= 3
This example is the same as the previous numeric variable example, except that now it uses the >= operator. The expression now selects respondents who gave the Mammals gallery a rating of 3 or more.
Categorical variables
location >= {EUROPE, ASIA_OR_AUSTRALIA, AFRICA}
This example is also the same as the previous categorical variable example except that now it uses the >= operator. The >= operator returns True if the category list on the left side is a proper superset of, or is equal to, the category list on the right side. The expression in this example selects respondents who have visited museums in at least the three specified world regions.
See
Comparison operators