python中列表和字典常用方法和函数

时间:2024-04-08 12:34:08

Python列表函数&方法

Python包含以下函数:

序号 函数
1 cmp(list1, list2)
比较两个列表的元素
2 len(list)
列表元素个数
3 max(list)
返回列表元素最大值
4 min(list)
返回列表元素最小值
5 list(seq)
将元组转换为列表

Python包含以下方法:

序号 方法
1 list.append(obj)
在列表末尾添加新的对象
2 list.count(obj)
统计某个元素在列表中出现的次数
3 list.extend(seq)
在列表末尾一次性追加另一个序列中的多个值(用新列表扩展原来的列表)
4 list.index(obj)
从列表中找出某个值第一个匹配项的索引位置
5 list.insert(index, obj)
将对象插入列表
6 list.pop(obj=list[-1])
移除列表中的一个元素(默认最后一个元素),并且返回该元素的值
7 list.remove(obj)
移除列表中某个值的第一个匹配项
8 list.reverse()
反向列表中元素
9 list.sort([func])
对原列表进行排序

例子:


string1=[1,2,3]
string2=[4,5,6]
string1.extend(string2)
print(string1)
print(string1.count(1))#查找内容为1的元素有几个
print(string1.index(3))#查找位置为3的内容
string1.insert(2,100)#在位置为2插入100
list.reverse(string1)#将string1中的元素位置反转
list.sort(string1)#对string1按从小到大排序
list.sort(string1,reverse=True)#对string1按从大到小排序

字典内置函数&方法

Python字典包含了以下内置函数:

序号 函数及描述
1 cmp(dict1, dict2)
比较两个字典元素。
2 len(dict)
计算字典元素个数,即键的总数。
3 str(dict)
输出字典可打印的字符串表示。
4 type(variable)
返回输入的变量类型,如果变量是字典就返回字典类型。

Python字典包含了以下内置方法:

序号 函数及描述
1 radiansdict.clear()
删除字典内所有元素
2 radiansdict.copy()
返回一个字典的浅复制
3 radiansdict.fromkeys()
创建一个新字典,以序列seq中元素做字典的键,val为字典所有键对应的初始值
4 radiansdict.get(key, default=None)
返回指定键的值,如果值不在字典中返回default值
5 radiansdict.items()
以列表返回可遍历的(键, 值) 元组数组
6 radiansdict.keys()
以列表返回一个字典所有的键
8 radiansdict.setdefault(key, default=None)
和get()类似, 但如果键不存在于字典中,将会添加键并将值设为default
9 radiansdict.update(dict2)
把字典dict2的键/值对更新到dict里
10 radiansdict.values()
以列表返回字典中的所有值
dict={'name':'spal','sex':'male','age':20}
spal=['ip','salary']
dict.fromkeys(spal,2)#创建一个新字典dict并将spal中的元素作为字典的键,values设置为2
print(dict)
ip=dict2.get('ip')#获取字典中键为‘ip’的值
print(ip)
print(dict2.keys())#返回字典中的键
print(dict2.items())#返回字典中的键值对
dict3={'name':'spal'}
dict2.update(dict3) #将dict3的键值对更新到dict2中
dict.clear()

相关文章