Created
March 25, 2017 07:39
-
-
Save abu-yusuf-dev/f0bc206e3b0c8c6c0f60c3b329fd7165 to your computer and use it in GitHub Desktop.
This is simple grading System developed by Python!
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
num=int(input(' Please Enter Your Mark: \n')) | |
if num<=100 and num>=80: | |
print(' You are a Genious and You got A+ grade!') | |
elif num<79 and num>75: | |
print('You got A grade') | |
elif num < 75 and num > 70: | |
print('You got A- grade') | |
elif num < 70 and num > 65: | |
print('You got B+ grade') | |
elif num < 65 and num > 60: | |
print('You got B grade') | |
elif num <60 and num >50: | |
print('You got C+ grade') | |
elif num <50 and num >40: | |
print('You got C grade') | |
elif num<0: | |
print('Invalid Option!') | |
else : | |
print('Sorry! You are fail') | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
impressive.Thanks bro