import week_5_homework as w5h

"""
Problem 2: BMI Calculator
Write a class called Person that has 3 attributes: name, height, and weight. The class should have
"""
person = w5h.Person(name= 'Joe', height=2, weight=80)
print(person.BMI)
# this should print out 20


my_model = w5h.LinearModel (m=1, b=0)
Y = my_model.predict(2)
print(Y)
# y should be 2