Links: PROGRAMMING - PYTHON
Rel: python standard library builtins
Ref:
Tags: #public
linux/macos = echo
print("Hello World")
integers with commas:
>>> num1 = 1_000_000_000 # recognized as a regular integer {: id="recognized-as-a-regular-integer" }
>>> num2 = 2_000
>>> ans = num1 + num2
>>> print(f'{ans:,}')
>>> 2,000,000,000,000