Operations Python code
Not those type of operations.
Mathematical operators = set equal to == ‘is equal to’ != NOT equal to > and < greater than & less than >= and <= greater than or equal to / less than or equal to * / Multiply & divide + - add & subtract % Modulus – gives remainder to a division problem
We can practice in python shell Try these on your own using Python’s shell (not the ‘new window’) 12 * 2 35.8 * 12.2 12 / 2 12%5 100 > 50 50 == 50 100 <= 12
Revise & turn in interview program Take the rubric and make sure our program is completed correctly