005 REPL (ரிப்பல்) - Comprehensive Python in Tamil
Notes
- REPL https://en.wikipedia.org/wiki/Read-eval-print_loop
- Semantic Versioning https://semver.org/
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+dto exit REPL