pair of values
In Python, print(42,000) outputs 42 0 because it is interpreted as passing two separate arguments—integer and integer —separated by a comma, which print displays with a space between them. Leading or trailing zeros on numbers are removed because Python treats them as standard numeric types rather than strings.