Python内置列表函数和方法
Python包含以下列表函数:
序号 | 函数及描述 |
---|---|
1 | cmp(list1, list2) 比较两个列表的元素。 |
2 | len(list) 返回列表的总长度。 |
3 | max(list) 返回列表中最大值的元素。 |
4 | min(list) 返回列表中最小的元素。 |
5 | list(seq) 将元组转换为列表。 |
Python包含以下列表方法:
序号 | 方法及描述 |
---|---|
1 | list.append(obj) 将对象obj添加到列表末尾。 |
2 | list.count(obj) 返回对象obj在列表中出现的次数。 |
3 | list.extend(seq) 将seq的内容添加到列表末尾。 |
4 | list.index(obj) 返回obj在列表中第一次出现的最低索引。 |
5 | list.insert(index, obj) 在索引index处插入对象obj。 |
6 | list.pop(obj=list[-1]) 移除并返回列表中的最后一个对象或obj。 |
7 | list.remove(obj) 移除列表中的对象obj。 |
8 | list.reverse() 就地反转列表中的对象。 |
9 | list.sort([func]) 排序列表中的对象,如果给出则使用比较函数func。 |
广告