154k views
24 votes
In Python 3, the maximum value for an integer is 263 - 1:
True
False

1 Answer

2 votes

Answer:

TRUE

Step-by-step explanation:

Python 3 does not have a maximum size of int. This means that there is no maximum or minimum value of int in Python 3. We can still check the machine's word size (size of the data stored in the hardware by the processor). In Python 3, the maximum value for an integer is 263

User Charles Truluck
by
4.6k points