Replace "+" in print with the more idiomatic ","

This commit is contained in:
unknown
2020-10-08 12:35:40 -04:00
parent 3c119ecf10
commit 860c680caa

View File

@@ -73,7 +73,7 @@ while abs(balance) > .02:
# When the while loop terminates, we know we have
# our answer!
print ( "Lowest Payment:" + str( round(payment, 2) ) )
print ( "Lowest Payment:", str( round(payment, 2) ) )
</answer_display>
<grader_payload>
{"grader": "ps02/bisect/grade_bisect.py"}