Skip to content

Commit a08ef99

Browse files
authored
Update README.md
1 parent 1ab28fb commit a08ef99

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

exercises/02-Loop-list/README.md

+6-7
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,17 @@ tutorial: "https://www.youtube.com/watch?v=VK7jmXad64k"
44

55
# `02` Loop list
66

7-
## 📝Instructions:
7+
## 📝 Instructions:
88

9-
1. Print all of the elements in the console, instead of just the single value of the list.
9+
1. Print all the elements in the console instead of just a single value of the list.
1010

11-
```py
12-
You will have to loop through the whole array using a for loop.
13-
```
14-
## 💡 Hint:
11+
> You will have to loop through the whole array using a `for` loop.
12+
13+
## 💡 Hint:
1514

1615
+ If our goal is to print every item, which is a repetitive task, we can use a loop. Think, for `each_item` in `my_list`, what do we want? We can then use the namespace reference to each item by using `each_item` and perform any operations we want upon each iteration.
1716

18-
## Expected result:
17+
## 💻 Expected result:
1918

2019
```py
2120
232

0 commit comments

Comments
 (0)