Notes

  • () Brackets
  • of of
  • / division
  • * multiplication or into
  • + addition
  • - subtraction

REPL

 uv run python
Python 3.14.3 (main, Feb  3 2026, 15:32:20) [Clang 17.0.0 (clang-1700.6.3.2)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> 2 + 3 * 4
14
>>> 5 / 5 * 5
5.0
>>> 2 + 5 / 5 * 5
7.0
>>> (2 + 3) * 4
20
>>> 2 - 3 * 4
-10
>>> (2 - 3) * 4
-4
>>> 2 - (3 * 4)
-10
>>>