python program
WAP to take marks in 3 subjects from the user, find the total and percentages. Assign the
grades according to the following
<40 % D
>= 40 and <60 C
>=60 and <80 B
>= 80 A
Answers
Answered by
2
Answer:
It goes like:
Explanation:
- Got in input values and saved it in variables.
- Saved percentage value in per.
- Used if-elif-else statements to check what to print.
Similar questions