Skip to content

Instantly share code, notes, and snippets.

@DuncantheeDuncan
Last active September 11, 2019 16:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DuncantheeDuncan/45112e20f45b62c202e72e90107a4a27 to your computer and use it in GitHub Desktop.
Save DuncantheeDuncan/45112e20f45b62c202e72e90107a4a27 to your computer and use it in GitHub Desktop.
# this program will take in the scores and return the graades with
# appropriate comment.
final_mark = input("plese enter Your mark:")
if final_mark <= 60 :
print "Contact your e-tutor urgently."
elif final_mark <=70:
print "Chat with your e-tutor urgently."
elif final_mark <=80:
print "On track, keep going."
elif final_mark <= 100:
print "Awsome! stay strong!!"
else:
print "Please check somthing with your marks."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment