diff options
author | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2024-05-04 07:52:39 +0000 |
---|---|---|
committer | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2024-05-04 07:52:39 +0000 |
commit | cbf3c262d4e31237ac3e204ffff0275745c9af99 (patch) | |
tree | 29de9c91b7af1a096a4a8154171d8840c98071ab /wk6/pset | |
parent | e6d83b531139996988be4e574d8173e7bfdc702d (diff) |
Sat, May 4, 2024, 12:52 AM -07:00
Diffstat (limited to 'wk6/pset')
-rw-r--r-- | wk6/pset/sentimental-cash/cash.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wk6/pset/sentimental-cash/cash.py b/wk6/pset/sentimental-cash/cash.py index 9433bcb..413636f 100644 --- a/wk6/pset/sentimental-cash/cash.py +++ b/wk6/pset/sentimental-cash/cash.py @@ -5,5 +5,5 @@ while True: if cents > 0: break -quarters = (cents / 25).round() +quarters = round((cents / 25), 2) cents = |