From 3ec6085a8a4f070a70024c53f70cecc3ab0f7106 Mon Sep 17 00:00:00 2001 From: Vishal Gohel <60569628+VishalGohelishere@users.noreply.github.com> Date: Thu, 1 Oct 2020 14:30:11 +0530 Subject: [PATCH] Update ep1.py --- ep1.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/ep1.py b/ep1.py index e5c4c48..41861b2 100644 --- a/ep1.py +++ b/ep1.py @@ -24,16 +24,16 @@ # 65 to 74 --> B # 75 to 100 --> A -guide_message = "Welcome:" -print("Please type your name:") -inp_name = input() -print(guide_message, type(inp_name)) +guide_message = "Welcome: " + +inp_name = input("Please type your name: ") +print(guide_message, inp_name) notice_message = "You got:" result = ['A', 'B', 'C', 'D', 'F'] -print("Please type your score here:") -raw_score = input() + +raw_score = input("Please type your score here: ") score = int(raw_score) if 0 <= score < 50: