Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions 09_Day_Conditionals/09_conditionals.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
10 changes: 5 additions & 5 deletions old_files/readme7-9.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down