My returned average does not look right in terms of decimal places using +str for a variable.
my code below should provide 25.83 but I get 25.830000000002
total_bmi = 0
for bmi in bmis:
total_bmi += float(bmi)
average_bmi = total_bmi/len(bmis)
print("Average BMI: " + str(average_bmi))