Replace "+" in print with the more idiomatic ","
This commit is contained in:
@@ -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"}
|
||||
|
||||
Reference in New Issue
Block a user