Skip to content

Commit f77ecfd

Browse files
committed
Added deep dive links to 10-loops
1 parent cca76c8 commit f77ecfd

1 file changed

Lines changed: 13 additions & 2 deletions

File tree

curriculum/01-foundations/10-loops.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,17 @@ Ready to test your knowledge? Try writing a `for` loop that prints out the lette
104104
```python interactive
105105
my_name = "" # write you name here
106106
```
107+
---
108+
109+
<details>
110+
<summary>📚 Deep Dive</summary>
111+
112+
Official python documentation:
113+
* [Python Docs: For loops](https://docs.python.org/3/tutorial/controlflow.html#for-statements)
114+
* [Python Docs: While loops](https://docs.python.org/3/reference/compound_stmts.html#while)
115+
116+
Other resources:
117+
* [Towardsdatascience.com: Loops and statements in Python: A deep understanding (with examples)](https://towardsdatascience.com/loops-and-statements-in-python-a-deep-understanding-with-examples-2099fc6e37d7/)
118+
* [Geeksforgeeks.org: Loops in Python](https://www.geeksforgeeks.org/python/loops-in-python/)
107119

108-
## Deep dive
109-
https://www.stratascratch.com/blog/python-loops-explained-here-is-how-to-master-them
120+
</details>

0 commit comments

Comments
 (0)