Notes

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.
>>> print("Hello")
Hello
>>> 1 + 2
3
>>> name = "Singaravelan"
>>> len(name)
12
>>> name = "Karthikeyan"
>>> len(name)
11
>>>
  • Press ctrl+d to exit REPL