Web Development
The world world is now on the web, share and learn ideas on blogging, website design, web hosting,... View more
How to fix invalid literal for int() with base 10 in Python?
-
How to fix invalid literal for int() with base 10 in Python?
Hello all.
Please I have challenge on an assignment. I am getting this error invalid literal for int() with base 10 while trying to run a function I created to calculate BMI. I did a code like this:height = input("enter your height in m: ") weight = input("enter your weight in kg: ") h = int(height) w = int(weight) BMI = w/(h*h) print(int(BMI))
Please assist.
Log in to reply.