Skip to content

Instantly share code, notes, and snippets.

@Robin-Andrews
Created March 5, 2021 19:39
Show Gist options
  • Save Robin-Andrews/ad63b09a245c9a654ab07dc40c5df583 to your computer and use it in GitHub Desktop.
Save Robin-Andrews/ad63b09a245c9a654ab07dc40c5df583 to your computer and use it in GitHub Desktop.
= int(input("Please enter your percentage grade: "))
if result > 80:
print("Grade A")
elif result >= 70:
print("Grade B")
elif result >= 60:
print("Grade C")
elif result >= 50:
print("Grade D")
else:
print("Grade U")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment