Skip to content

Commit 2d0469a

Browse files
authored
Update README.md
1 parent 1c89089 commit 2d0469a

File tree

1 file changed

+4
-10
lines changed

1 file changed

+4
-10
lines changed

exercises/01.4-Add-item-to-list/README.md

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,13 @@ tutorial: "https://www.youtube.com/watch?v=blkw9_c-s8M"
44

55
# `01.4` Add items to the list
66

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

9-
1. Add 10 random integers to the `arr` list.
9+
1. Add 10 random integers to `my_list`.
1010

11-
## 💡 Hint:
11+
## 💡 Hints:
1212

1313
+ You have to `import random` module.
1414

15-
+ Use the `random.randint()` function to get random numbers.
16-
Search on Google how to use randint function.
15+
+ Use the `random.randint()` function to get random numbers. Search on Google "how to use the randint function".
1716

18-
## Expected result:
19-
20-
```py
21-
[4, 5, 734, 43, 45, 36, 2, 88, 12, 87, 79, 96, 58, 46, 7]
22-
```

0 commit comments

Comments
 (0)