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.
>>> 7 + 5
12
>>> 7 - 5
2
>>> 7 x 5
  File "<python-input-2>", line 1
    7 x 5
      ^
SyntaxError: invalid syntax
>>> 7 X 5
  File "<python-input-3>", line 1
    7 X 5
      ^
SyntaxError: invalid syntax
>>> 7 * 5
35
>>> 7 / 5
1.4	
>>> 7 // 5
1
>>> 7 % 5
2
>>>
>>> 7 + 5
12
>>> 7 + 5.0
12.0
>>> type(7)
<class 'int'>
>>> type(5.0)
<class 'float'>
>>>

Notes