-1

when I print this it giving me this output I don't understand How?

>>> print(1,000,000)
1 0 0
Aran-Fey
  • 39,665
  • 11
  • 104
  • 149

1 Answers1

3

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)
sunwarr10r
  • 4,420
  • 8
  • 54
  • 109