Length of a Number in Python
In Python 2, the size of a numeric variable was limited to 32 or 64 bits, depending on the processor used. However, in Python 3, these restrictions are lifted and a number can be of any size.
Let's take a large number and raise it to the 5th power:
tst = 1342453547656758678993553453 ** 5
print(tst)
The following numbers are given:
num1 = 200 ** 500
num2 = 3000
Get their product.
The following numbers are given:
num1 = 67 ** 50
num2 = 45 ** 60
Subtract the second number from the first.