Skip to content

Latest commit

 

History

History
16 lines (15 loc) · 390 Bytes

File metadata and controls

16 lines (15 loc) · 390 Bytes
  1. Write a python program to find the grade of the studend based on percentage

    1. If % above 70 Grade A+
    2. If % between 65 to 70 then A
    3. If % between 60 to 65 then B
    4. If % between 50 to 60 then C
    5. If % between 40 to 50 then D
    6. If % below 50 then E

    Sample Input

    inp = 75

    Sample Output

    Your grade is A+