diff options
author | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2024-05-03 07:49:07 +0000 |
---|---|---|
committer | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2024-05-03 07:49:07 +0000 |
commit | e4687e7b22440ebf80e410d0631dcf01f6329693 (patch) | |
tree | 29f0cac78e94c2ee2ac566257cfa05a2129a14ac | |
parent | 728d38700ae6746906a2784306dda6ec4980ecc2 (diff) |
Fri, May 3, 2024, 12:49 AM -07:00
-rw-r--r-- | wk6/lect/calculator.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wk6/lect/calculator.py b/wk6/lect/calculator.py index cae3ca8..26be429 100644 --- a/wk6/lect/calculator.py +++ b/wk6/lect/calculator.py @@ -9,4 +9,4 @@ x = int(input("x: ")) y = int(input("y: ")) z = x / y -print(z) +print(f"{z:.50f}") |