Skip to content

Commit ceaa6bf

Browse files
committed
Add links to subtopics
1 parent 6b72d12 commit ceaa6bf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ bool(-0.0)
185185

186186
## Collections 1 (tuple and list)
187187

188-
Tuples.
188+
### Tuples
189189

190190
```python
191191
# A tuple is a read-only data structure for storing collections that
@@ -233,7 +233,7 @@ fake_tuple = (42)
233233
type(fake_tuple) # is an 'int' type
234234
```
235235

236-
Lists.
236+
### Lists
237237

238238
```python
239239
# Unlike arrays in most other languages, Python lists can store data of any type.
@@ -290,7 +290,7 @@ my_list.clear()
290290
## Collections 2 (set and dictionary)
291291
=======
292292

293-
Sets.
293+
### Sets
294294

295295
```python
296296
# A set is an unordered collection of things without duplicates.

0 commit comments

Comments
 (0)