Python Basic Operators : Just like any other programming languages, the addition, subtraction, multiplication, and division operators can be used with numbers.

number = 1 + 2 * 3 / 4.0
print(number)

Trinket.io on-line Python compiler

Try to predict what the answer will be. Does python follow the order of operations? (of course, it does.)