3 odpowiedzi
+ 4
I think you mean print(1,000,000,000) with a comma, which results in 1 0 0 0 and not print(1.000.000.000) with a period, which will result in a syntax error.
The ',' commas indicate to the print function multiple values are being passed. In which case each value is evaluated and then output to the stream separated by a space.
The 000 issue is as @MemphisReigns stated.
0
ahh, alright that makes sense 🙂 Thank you two !