012 பெரிய எண்களை எழுதுவது எப்படி - Comprehensive Python in Tamil
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.
>>> 1000000
1000000
>>> 10,00,000
(10, 0, 0)
>>> type(10,00,000)
Traceback (most recent call last):
File "<python-input-2>", line 1, in <module>
type(10,00,000)
~~~~^^^^^^^^^^^
TypeError: type.__new__() argument 1 must be str, not int
>>> 10_00_00
100000
>>> 10_00_00.1237777777
100000.1237777777
>>> 10_00_00.123_777_777_7
100000.1237777777
>>> 10_00_00.123_777_777_7 ** 5
1.000006188904206e+25
>>> type(10_00_00_123_456_789)
<class 'int'>
>>> type(10_00_00_123_456_789_678_123_459)
<class 'int'>
>>> type(10_00_00_123_456_789_678_123_459.123_456_484_339)
<class 'float'>
>>> 10_00_00_123_456_789_678_123_459.123_456_484_339
1.0000012345678967e+23
>>> 10_00_000
1000000
>>> 1_000_000
1000000
>>>