009 முழு எண், மிதக்கும் எண் (integers and floats) - 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.
>>> type(5)
<class 'int'>
>>> type(5.6)
<class 'float'>
>>> .56 * 10 ** 0
0.56
>>> .56 * 10 ** 1
5.6000000000000005
>>> .1234 * 10 ** 0
0.1234
>>> .1234 * 10 ** 9
123400000.0
>>> .1234 * 10 ** 2
12.34
>>> .1234 * 10 ** 1
1.234
>>> .1234 * 10 ** 3
123.39999999999999
>>> .1234 * 10 ** 4
1234.0
>>>
>>>
>>> 5 + 6
11
>>> type(5 + 6)
<class 'int'>
>>> type(5.0 + 6)
<class 'float'>
>>> 5.0 + 6
11.0
>>> 5.0 ** 6
15625.0
>>>