From 4b21af5c165f8530318b040bebbe3184ea4aa308 Mon Sep 17 00:00:00 2001 From: anuj840 <70152505+anuj840@users.noreply.github.com> Date: Mon, 19 Oct 2020 05:29:51 -0900 Subject: [PATCH] Create short article related to python data structure --- ...t article related to python data structure | 49 +++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 python/short article related to python data structure diff --git a/python/short article related to python data structure b/python/short article related to python data structure new file mode 100644 index 0000000..7e1b55b --- /dev/null +++ b/python/short article related to python data structure @@ -0,0 +1,49 @@ + More on Lists + +The list data type has some more methods. Here are all of the methods of list objects: + +list.append(x) + + Add an item to the end of the list. Equivalent to a[len(a):] = [x]. + +list.extend(iterable) + + Extend the list by appending all the items from the iterable. Equivalent to a[len(a):] = iterable. + +list.insert(i, x) + + Insert an item at a given position. The first argument is the index of the element before which to insert, so a.insert(0, x) inserts at the front of the list, and a.insert(len(a), x) is equivalent to a.append(x). + +list.remove(x) + + Remove the first item from the list whose value is equal to x. It raises a ValueError if there is no such item. + +list.pop([i]) + + Remove the item at the given position in the list, and return it. If no index is specified, a.pop() removes and returns the last item in the list. (The square brackets around the i in the method signature denote that the parameter is optional, not that you should type square brackets at that position. You will see this notation frequently in the Python Library Reference.) + +list.clear() + + Remove all items from the list. Equivalent to del a[:]. + +list.index(x[, start[, end]]) + + Return zero-based index in the list of the first item whose value is equal to x. Raises a ValueError if there is no such item. + + The optional arguments start and end are interpreted as in the slice notation and are used to limit the search to a particular subsequence of the list. The returned index is computed relative to the beginning of the full sequence rather than the start argument. + +list.count(x) + + Return the number of times x appears in the list. + +list.sort(key=None, reverse=False) + + Sort the items of the list in place (the arguments can be used for sort customization, see sorted() for their explanation). + +list.reverse() + + Reverse the elements of the list in place. + +list.copy() + + Return a shallow copy of the list. Equivalent to a[:].