@@ -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' ]