在Python中,大于号用`>=`表示。这个操作符用于比较两个值,如果左边的值大于或等于右边的值,则表达式的结果为`True`,否则为`False`。
例如:
x = 5y = 10if 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 2y is greater than or equal to 11
