在Python中,表示一个数大于另一个数,可以使用 `>=` 运算符。这个运算符会比较两个值,如果左边的数大于或等于右边的数,则返回 `True`,否则返回 `False`。
例如:
x = 5
y = 10
if x >= 2:
print('x is greater than or equal to 2')
if y >= 11:
print('y is greater than or equal to 11')
x is greater than or equal to 2
y is greater than or equal to 11