when I print this it giving me this output I don't understand How?
>>> print(1,000,000)
1 0 0
when I print this it giving me this output I don't understand How?
>>> print(1,000,000)
1 0 0
You are printing 3 different values. Its the same as this:
print('Hi', 'hello world', 'bye bye')
And 000 is interpreted as 0, example:
print(000000000)