Computer Science, asked by hena5079, 10 months ago

What is the largest integer value that can be represented in Python?

Answers

Answered by sushiladevi4418
0

Answer:

The largest integer value that can be represented in Python.

Explanation:

# Python 2.7:

int and long int

# And in Python 3 there is only one type:

int x = 10

print(type(x))

x = 10000000000000000000000000000000000000000000

print(type(x))

Output in Python 2.7 :

<type 'int'>

<type 'long'>

Output in Python 3 :

<type 'int'>

<type 'int'>

Answered by umap02371
26

Answer:

2**32-1

2**32

no limit

none of the above

Similar questions