Objectives

Integers (int) The following are integers: 0. 1. 12345 +12-15. Note that we do NOT put commas in numbers in Python (or most other programming languages). However, it . is. legal to use underscores instead of commas! 1,000 is not a legal int in Python, but 1_000 is. Also, Python doesn't care where you put the underscores. This is also legal: 1_0 ... ................
................