Wednesday, April 8, 2015

Greater Than or Equal to >= - Python Tutorial


Greater Than or Equal to >=


The Greater Than or Equal to >= will check if the left side is greater or equal to the right side if it is then Python will return True and if left side is less than the right then Python will return False


Greater Than or Equal to >= Examples


= Examples" >#Great Than or Equal to >= Examples

>>> 7 >= 5
True
>>> 4 >= 5
False

If you have any questions about Greater Than or Equal to >= leave a comment below so we can help you better understand this comparison operator.



No comments:

Post a Comment