[Solved] How do i print out number variables in python 3? [closed]
The main problem here is that you are calling functions as they were variables Here is your code with the functions being called correctly: import math print(‘input your height and weight to find BMI.’) num_a = int(input(“feet==”)) num_b = int(input(“inches==”)) num_c = int(input(“weight(lbs)==”)) def weight(): return int(num_c) * 2.2 def height(): return (int(num_a)) * 12 … Read more