Skip to content

Commit fcf0c38

Browse files
committed
fix: use normal print instead of percent formatting
Signed-off-by: Henry Schreiner <[email protected]>
1 parent 4ccb50d commit fcf0c38

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

_episodes/11-debugging.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ not more.
268268
> for patient in patients:
269269
> weight, height = patients[0]
270270
> bmi = calculate_bmi(height, weight)
271-
> print("Patient's BMI is: %f" % bmi)
271+
> print("Patient's BMI is:", bmi)
272272
> ~~~
273273
> {: .language-python}
274274
>

0 commit comments

Comments
 (0)