Skip to content

Commit 81f1b81

Browse files
authored
add link in list
1 parent da7f093 commit 81f1b81

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ All contributions are welcome:
7575
- [Finding a Value in a List with the index() Method](#finding-a-value-in-a-list-with-the-index-method)
7676
- [Adding Values to Lists with the append() and insert() Methods](#adding-values-to-lists-with-the-append-and-insert-methods)
7777
- [Removing Values from Lists with remove()](#removing-values-from-lists-with-remove)
78+
- [Removing Values from Lists with pop()](#removing-values-from-lists-with-pop)
7879
- [Sorting the Values in a List with the sort() Method](#sorting-the-values-in-a-list-with-the-sort-method)
7980
- [Tuple Data Type](#tuple-data-type)
8081
- [Converting Types with the list() and tuple() Functions](#converting-types-with-the-list-and-tuple-functions)
@@ -1328,11 +1329,13 @@ If the value appears multiple times in the list, only the first instance of the
13281329
>>> spam = ['cat', 'bat', 'rat', 'elephant']
13291330

13301331
>>> spam.pop()
1332+
'elephant'
13311333

13321334
>>> spam
13331335
['cat', 'bat', 'rat']
13341336

13351337
>>> spam.pop(0)
1338+
'cat'
13361339

13371340
>>> spam
13381341
['bat', 'rat']

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy