From 21dc1ad073b1b817bcbe5eabece4952bd9399c90 Mon Sep 17 00:00:00 2001 From: Firepup Sixfifty Date: Wed, 21 Aug 2024 09:45:54 -0500 Subject: [PATCH] Adjust phrasing --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 215bdad..9381a2e 100644 --- a/main.py +++ b/main.py @@ -34,5 +34,5 @@ while 1: except KeyboardInterrupt: pass print( - f"\nThe student got {right}/{answerCount} correct, with approximately an {round((right/answerCount) * 100, 2)}%.\n" + f"\nThe student got {right}/{answerCount} correct, which is approximately {round((right/answerCount) * 100, 2)}%.\n" )