Skip to content

Commit 05603c0

Browse files
committed
chore: update titles
1 parent c595143 commit 05603c0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/cheatsheet/lists-and-tuples.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ The multiple assignment trick can also be used to swap the values in two variabl
230230
# 1
231231
```
232232

233-
## Adding Values with append() and insert()
233+
## Adding Values
234234

235235
### append()
236236

@@ -254,7 +254,7 @@ The multiple assignment trick can also be used to swap the values in two variabl
254254
# ['table', 'bed', 'chair', 'rack', 'shelf']
255255
```
256256

257-
## Removing values with del(), remove() and pop()
257+
## Removing Values
258258

259259
### del()
260260

@@ -311,7 +311,7 @@ By default, `pop` will remove and return the last item of the list. You can also
311311
['bat', 'rat']
312312
```
313313

314-
## Sorting values with sort
314+
## Sorting values with sort()
315315

316316
```python
317317
>>> numbers = [2, 5, 3.14, 1, -7]

0 commit comments

Comments
 (0)