While reading about Python's built-in types of number and specifically integers, I came across this line as quoted below;
Plain integers are at least 32 bits long. The range is at least -2,147,483,648 to 2,147,483,647 (approximately ± 2 billion).
Does it mean that any arbitrary number that I can think of which has 2 billion digits, is the limit for Python to display it as a plain integer? If I should ask more specifically, what does "32 bits long" mean in reference to the aforementioned quoted sentence.