forked from exercism/python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlinks.json
More file actions
42 lines (42 loc) · 1.32 KB
/
links.json
File metadata and controls
42 lines (42 loc) · 1.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[
{
"url": "https://nedbatchelder.com/text/iter.html",
"description": "Ned Batchelder: Loop Like a Native."
},
{
"url": "https://docs.python.org/3/tutorial/controlflow.html#for-statements",
"description": "Python Docs Tutorial: for statements"
},
{
"url": "https://realpython.com/python-for-loop/",
"description": "Real Python: For Loops"
},
{
"url": "https://realpython.com/python-while-loop/",
"description": "Real Python: While Loops"
},
{
"url": "https://realpython.com/python-enumerate/",
"description": "Real Python: enumerate()"
},
{
"url": "https://docs.python.org/3/tutorial/controlflow.html#the-range-function/",
"description": "Python Docs: range() function."
},
{
"url": "https://realpython.com/python-for-loop/#the-range-function",
"description": "Real Python: range()"
},
{
"url": "https://treyhunner.com/2018/02/python-range-is-not-an-iterator/",
"description": "Trey Hunner: range() is not an iterator"
},
{
"url": "https://docs.python.org/3/library/exceptions.html#StopIteration",
"description": "Python Docs: StopIteration Error"
},
{
"url": "https://docs.python.org/3/tutorial/controlflow.html#break-and-continue-statements-and-else-clauses-on-loops",
"description": "Python Docs: Control Flow for Loops"
}
]