We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5953417 commit dbc07b5Copy full SHA for dbc07b5
python.md
@@ -99,6 +99,10 @@ print(mylist[-1]) # prints Samsung
99
|lst.pop(`[index]`)→value| remove & return item at index|
100
|lst.sort()| sort the given list items|
101
|lst.reverse() |reverse the given list items|
102
+|lst.count() |Returns the number of elements with the specified value|
103
+|lst.clear() |Removes all the elements from the list|
104
+|lst.index() |Returns the index of the first element with the specified value|
105
+|lst.copy() |Returns a copy of the list|
106
107
### 2. Tuple
108
0 commit comments