1. | count(self, value, /) | Return number of occurrences of value. 用来计算列表中莫个数的出现的次数。 运行结果:
2. | extend(self, iterable, /) | Extend list by appending elements from the iterable. 把一个列表中的数据直接加在另一个列表后面。
运行结果: 3. | index(self, value, start=0, stop=9223372036854775807, /) | Return first index of value. 用来索引一个数在列表中的位置 运行结果: 4. | insert(self, index, object, /) | Insert object before index. 把一个数插入到列表的第几位之前。 运行结果: 5. | pop(self, index=-1, /) | Remove and return item at index (default last). | Raises IndexError if list is empty or index is out of range. 用于删除列表中的莫一项并可以输出此项。 运行结果: 6. | remove(self, value, /) | Remove first occurrence of value. | Raises ValueError if the value is not present. 删除从前到后第一个索引到的数。 运行结果: 注:仅删除了第一个3,并未把全部的3给删除。 7. | reverse(self, /) | Reverse IN PLACE. 把一个列表按顺序倒置过来。
运行结果: 8. def sort(self, *args, **kwargs): # real signature unknown “”" Sort the list in ascending order and return None.
The sort is in-place (i.e. the list itself is modified) and stable (i.e. the
order of two equal elements is maintained).
If a key function is given, apply it once to each list item and sort them,
ascending or descending, according to their function values.
The reverse flag can be set to sort in descending order
可以对一个列表进行排序(顺序排序)。
可以结合reserve函数进行倒叙排列。
运行结果: 还可按自己想法按莫一位进行排序 运行结果:
|