Skip to content

Commit b3197e5

Browse files
authored
Update README.md
1 parent 3cd5c3f commit b3197e5

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

exercises/01.5-loop-seventeen/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ For example:
1616

1717
```python
1818
for x in range(0,5):
19-
print(x)
19+
print(x)
2020
```
2121

2222
Expected output:
@@ -30,17 +30,17 @@ Expected output:
3030

3131
Note that the number specified in `range()`, 5 in this example, is never reached and 4 is our last output.
3232

33-
We can incorporate additional parameters to further specify (now could be a good time to google or at least check the HINT section ;) ).
33+
We can incorporate additional parameters to further specify (now could be a good time to Google or at least check the HINT section 😉).
3434

35-
## 📝Instructions:
35+
## 📝 Instructions:
3636

3737
1. Count from 1 to 17 with a loop and print each number on the console.
3838

39-
## 💡 Hint:
39+
## 💡 Hints:
4040

41-
- This how you loop : https://www.w3schools.com/python/python_for_loops.asp
41+
- This how you loop: https://www.w3schools.com/python/python_for_loops.asp
4242

43-
## Expected result:
43+
## 💻 Expected result:
4444

4545
```py
4646
1

0 commit comments

Comments
 (0)