mirror of
https://github.com/Asabeneh/30-Days-Of-Python.git
synced 2026-06-03 21:02:42 +08:00
Merge pull request #720 from Arcanixhades0/fix/grade-ranges-day9
docs: fix overlapping grade ranges (Day 9)
This commit is contained in:
commit
d29a533079
@ -233,13 +233,13 @@ Enter number two: 3
|
||||
|
||||
1. Write a code which gives grade to students according to theirs scores:
|
||||
|
||||
```sh
|
||||
80-100, A
|
||||
70-89, B
|
||||
60-69, C
|
||||
50-59, D
|
||||
0-49, F
|
||||
```
|
||||
```sh
|
||||
90-100, A
|
||||
80-89, B
|
||||
70-79, C
|
||||
60-69, D
|
||||
0-59, F
|
||||
```
|
||||
|
||||
1. Check if the season is Autumn, Winter, Spring or Summer. If the user input is:
|
||||
September, October or November, the season is Autumn.
|
||||
|
||||
@ -760,11 +760,11 @@ else:
|
||||
```
|
||||
1. Write a code which give grade to students according to theirs scores:
|
||||
```sh
|
||||
80-100, A
|
||||
70-89, B
|
||||
60-69, C
|
||||
50-59, D
|
||||
0 -49, F
|
||||
90-100, A
|
||||
80-89, B
|
||||
70-79, C
|
||||
60-69, D
|
||||
0-59, F
|
||||
```
|
||||
1. Check if the season is Autumn, Winter, Spring or Summer. If the user input is:
|
||||
September, October or November, the season is Autumn.
|
||||
|
||||
Loading…
Reference in New Issue
Block a user