0% found this document useful (0 votes)
4 views1 page

Pyt 4

The document provides an overview of commonly used list methods in Python, including append, extend, insert, remove, pop, index, count, sort, reverse, and clear. It includes examples demonstrating how each method modifies a list. For further information, it suggests reading the official Python documentation on list methods.

Uploaded by

sandhyadevit
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
4 views1 page

Pyt 4

The document provides an overview of commonly used list methods in Python, including append, extend, insert, remove, pop, index, count, sort, reverse, and clear. It includes examples demonstrating how each method modifies a list. For further information, it suggests reading the official Python documentation on list methods.

Uploaded by

sandhyadevit
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

List Methods

Python also has list methods already implemented to help us perform common list operations.
Here are some examples of the most commonly used list methods:

>>> my_list = [1, 2, 3, 3, 4]

>>> my_list.append(5)
>>> my_list
[1, 2, 3, 3, 4, 5]

>>> my_list.extend([6, 7, 8])


>>> my_list
[1, 2, 3, 3, 4, 5, 6, 7, 8]

>>> my_list.insert(2, 15)


>>> my_list
[1, 2, 15, 3, 3, 4, 5, 6, 7, 8, 2, 2]

>>> my_list.remove(2)
>>> my_list
[1, 15, 3, 3, 4, 5, 6, 7, 8, 2, 2]

>>> my_list.pop()
2

>>> my_list.index(6)
6

>>> my_list.count(2)
1

>>> my_list.sort()
>>> my_list
[1, 2, 3, 3, 4, 5, 6, 7, 8, 15]

>>> my_list.reverse()
>>> my_list
[15, 8, 7, 6, 5, 4, 3, 3, 2, 1]

>>> my_list.clear()
>>> my_list
[]

To learn more about list methods, I would recommend reading this article from the Python
documentation.

You might also like