I wanted to calculate a very large number and since python supports arbitraryly large numbers I thought that's perfect.
So, here it is:
import math
x=2**24
y=3840*2160
z=x**y
print("z is calculated")
print(z)
Well, the last I see is "z is calculated", so it is not the calculation itself that is the problem.
But even after an hour I do not see any other output.
So can someone explain what is going on here?
PS: z has about 60 Million digits...