Home » Backend » Python » >= (greater than or equal)
This >= (greater than or equal) relational operator returns a Boolean value stating whether one expression is greater than or equal to the other.
>=
A >= B
Here,
>>> 13 >= 7 True >>> 7 >= 7 True >>> 7 >= 13 False