Skip to content

Instantly share code, notes, and snippets.

@abu-yusuf-dev
Created March 25, 2017 07:39
Show Gist options
  • Save abu-yusuf-dev/f0bc206e3b0c8c6c0f60c3b329fd7165 to your computer and use it in GitHub Desktop.
Save abu-yusuf-dev/f0bc206e3b0c8c6c0f60c3b329fd7165 to your computer and use it in GitHub Desktop.
This is simple grading System developed by Python!
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')
@Mncedy
Copy link

Mncedy commented Apr 23, 2020

Nice one, grate code..!

@hamdansalifupolibu
Copy link

impressive.Thanks bro

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment