You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.
The print method in the sample code: print("Patient's BMI is: %f" % bmi)
use the formatted string in print function, but the formatted string has not been introduced in the previous lessons. It could be revised to print("Patient's BMI is:", bmi)
with corresponding output.
The text was updated successfully, but these errors were encountered:
The print method in the sample code:
print("Patient's BMI is: %f" % bmi)
use the formatted string in print function, but the formatted string has not been introduced in the previous lessons. It could be revised to
print("Patient's BMI is:", bmi)
with corresponding output.
The text was updated successfully, but these errors were encountered: