A python intrepreter is a system software which translates python codes to
machine codes to be processed.
Python is an intrepreted language
The intrepretor is a system software that converts the python codes
into machine language codes(binaries) so the CPU can read it and do the
required processes
>>> for i in range(10):
... mult = i * 100
... print(i, mult)
...
0 0
1 100
2 200
3 300
4 400
5 500
6 600
7 700
8 800
9 900