You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: curriculum/01-foundations/10-loops.md
+13-2Lines changed: 13 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -104,6 +104,17 @@ Ready to test your knowledge? Try writing a `for` loop that prints out the lette
104
104
```python interactive
105
105
my_name =""# write you name here
106
106
```
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/)
0 commit comments