Python Forum
Absolute Beginner Python Question
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Absolute Beginner Python Question
#1
I am trying to make a python code that contains if/else/elif statements that tells you what your grade is based on your score. So the program should respond according to this score table:
Score Grade
>= 0.9 A
>= 0.8 B
>= 0.7 C
>= 0.6 D
< 0.6 F

I wrote this code, but it keeps giving me a traceback error. I have no idea why and I've tried changing so much. I would appreciate help, thank you!

prompt = input('Enter a score between 0.0 and 0.1:\n')
score = input(prompt)
if score > 1 :
print('Not a valid score')
if score >= 0.9 :
print('A')
if score >= 0.8 :
print('B')
if score >= 0.7 :
print('C')
if score >= 0.6 :
print('D')
if score >= 0.0 :
print('F')
else :
print('Not a valid score')
score = input('Press enter to exit')
Reply


Messages In This Thread
Absolute Beginner Python Question - by matchamochi7 - Oct-31-2018, 08:14 PM
RE: Absolute Beginner Python Question - by j.crater - Oct-31-2018, 08:38 PM
RE: Absolute Beginner Python Question - by j.crater - Oct-31-2018, 08:46 PM
RE: Absolute Beginner Python Question - by wookie - Nov-01-2018, 04:52 PM
RE: Absolute Beginner Python Question - by snippsat - Nov-01-2018, 05:17 PM
RE: Absolute Beginner Python Question - by wookie - Nov-02-2018, 12:09 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Very Beginner question on simple variables Harvy 1 182 Apr-12-2024, 12:03 AM
Last Post: deanhystad
  Absolute paths in subprocess - file not found kittyticker 4 494 Jan-28-2024, 10:37 PM
Last Post: kittyticker
  A simple "If...Else" question from a beginner Serena2022 6 1,719 Jul-11-2022, 05:59 AM
Last Post: Serena2022
Question Beginner Boolean question [Guessing game] TKB 4 2,323 Mar-22-2022, 05:34 PM
Last Post: deanhystad
  Beginner question NameError amazing_python 6 2,457 Aug-13-2021, 07:28 AM
Last Post: amazing_python
  automatically get absolute paths oclmedyb 1 2,122 Mar-11-2021, 04:31 PM
Last Post: deanhystad
  Beginner question - storing values cybertron2 4 3,223 Mar-09-2021, 04:21 AM
Last Post: deanhystad
  beginner question about lists and functions sudonym3 5 2,748 Oct-17-2020, 12:31 AM
Last Post: perfringo
  Absolute beginner am I missing something? kamren 7 3,197 Sep-25-2020, 05:32 AM
Last Post: buran
  chkFile with absolute paths JarredAwesome 7 2,992 Sep-21-2020, 03:51 AM
Last Post: bowlofred

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020