This is my code
weight = float(input("Please Enter Your Weight In KIlograms: "))
height = float(input("Please Enter Your Height In Meters: "))
result = weight / height ** height
print("Your BMI is " + result)
And this is the error:
OverflowError: (34, 'Result too large')
I'm really not to familiar with the technical terms yet, so you might have to be a little more specific in your explanation.