1# To test if something is larger or equal use '>='
25 >= 10
3# Output:
4# False
1# Below follow the math operators that can be used in python
2# ** Exponent
32 ** 3 # Output: 8
4# % Modulus/Remaider
522 % 8 # Output: 6
6# // Integer division
722 // 8 # Output: 2
8# / Division
922 / 8 # Output: 2.75
10# * Multiplication
113 * 3 # Output: 9
12# - Subtraction
135 - 2 # Output: 3
14# + Addition
152 + 2 # Output: 4