Get your own Python server Result Size: 625 x 565
x
 
import math
try:
  print(math.exp(999))
except OverflowError:
  print("The number is too high")
except:
  print("Something else went wrong")
The number is too high