File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
exercises/01.5-loop-seventeen Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ For example:
1616
1717``` python
1818for x in range (0 ,5 ):
19- print (x)
19+ print (x)
2020```
2121
2222Expected output:
@@ -30,17 +30,17 @@ Expected output:
3030
3131Note 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
37371 . 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
46461
You can’t perform that action at this time.
0 commit comments