Python Forum
elif not responding on print
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
elif not responding on print
#4
DeaD_EyE is dead on, as usual!

Try this maybe for clarity?

for grade in range(100, -10, -10):    
    if grade >= 100:
        print("You got an A+! Congrats!")
    elif grade >= 90:
        print("You got an A! Congrats!")
    elif grade >= 80:
        print("You got a B! Congrats!")
    elif grade >= 70:
        print("You got a C! Congrats!")    
    elif grade >= 60:
        print("You got a D! Congrats! Ever heard of the library?")
    elif grade >= 50:
        print("You got an E! Ever heard of studying?")
    elif grade >= 40:
        print("You got an F! Ever read a book?")
    elif grade >= 30:
        print("You got a G! Ever go to the class?")
    elif grade >= 20:
        print("You got an H! Hope your EQ is big!")
    elif grade >= 10:
        print("You got an I! Go back to kindergarten. Do not pass Go, do not collect £100.")
    else:
        print("You got NOTHING! Congrats! You won a pointy hat with a large D on it!")
Reply


Messages In This Thread
elif not responding on print - by EddieG - Jul-20-2023, 09:18 AM
RE: elif not responding on print - by DeaD_EyE - Jul-20-2023, 09:51 AM
RE: elif not responding on print - by deanhystad - Jul-20-2023, 05:37 PM
RE: elif not responding on print - by Pedroski55 - Jul-20-2023, 09:44 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Pygame Rect Not Responding SomebodyImportant 1 1,578 May-02-2021, 01:27 PM
Last Post: BashBedlam
  IDLE stops responding upon saving tompi1 2 1,979 Oct-01-2020, 05:44 PM
Last Post: Larz60+
  Code is not responding abhishek81py 0 1,510 Jul-07-2020, 12:40 PM
Last Post: abhishek81py
  Sublime text not responding Mat 1 1,998 Mar-23-2020, 11:42 AM
Last Post: Fre3k
  IDLE not responding (Mac) Selinal 1 2,998 Aug-05-2019, 10:27 PM
Last Post: Larz60+
  Whats the right way to refactor this Big if/elif/elif ? pitosalas 1 2,277 Jul-28-2019, 05:52 PM
Last Post: ichabod801
  Client Server Game Pygame not responding Damien 2 3,191 Aug-04-2018, 06:19 PM
Last Post: micseydel
  Discord bot not responding to command [New User] Alabaster 0 3,418 May-20-2018, 06:34 PM
Last Post: Alabaster
  [Discord.py] Bot not responding? Ouindoze 2 10,135 Oct-10-2017, 01:35 AM
Last Post: Ouindoze

Forum Jump:

User Panel Messages

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