python字典、集合总结

2018-11-14  本文已影响0人  发家致富靠养猪

一、字典相关运算方法

1.clear
dict1 = {'a':1,'b':2}
dict1.clear()
2.copy
dict1 = {'a':1,'b':2}
dict2 = dict1.copy()
3.fromkeys
dict3= dict.fromkeys('abc',100)
print(dict3) # {'a': 100, 'b': 100, 'c': 100}
dict3= dict.fromkeys(['name','age','hah'],100)
print(dict3) # {'name': 100, 'age': 100, 'hah': 100}
4.get
dict3 = {'name': 100, 'age': 100, 'hah': 100}
print(dict3.get('name1')) #None
print(dict3.get('name1','不存在'))# 不存在
5.keys,value,items
dict3 = {'name': 100, 'age': 100, 'hah': 100}
dict4 = dict3.keys() #返回的是序列 不是列表
print(dict4)
print(dict3.values())
print(dict3.items())
for item in dict4:
    print(item)
6.setdefault(key,value)
dict3 = {'name': 100, 'age': 100, 'hah': 100}
dict3.setdefault('aq','200')
print(dict3) #{'name': 100, 'age': 100, 'hah': 100, 'aq': '200'}
dict3.setdefault('age','200')
print(dict3) #{'name': 100, 'age': 100, 'hah': 100, 'aq': '200'}

二、集合

1.什么是集合(set)

set1 = {1,2,3,'s',True}

set3 = set() #创建空集
print(type(set3),set3)

2.集合的增删改查

a.查(获取集合元素)
set1 = {1,2,3,'s',True}
for item in set1:
    print(item)
b.增(添加元素)
set1.add(50)
print(set1)#{1, 2, 3, 50, 's'}
set1.update([22,55])
print(set1)#{1, 2, 3, 50, 22, 55, 's'}
c.删(删除元素)
set1.remove(55)
print(set1)#{1, 2, 3, 's', 50, 22}

d.改 - 集合不能修改元素的值

3.集合的运算方法 + * in not in len() set() max() min()

4.数学集合运算

1.包含

集合1 >= 集合2 判断集合1是否包含集合2 (集合2是否是集合1的子集)
**集合1 <= 集合2 ** 判断集合2是否包含集合1 (集合1是否是集合2的子集)

print({1,2,3} >= {1,2}) #True
print({1,2,3} >= {1,2,4})#False
print({1,2,3} <= {1,2})#False
print({1,2,3} <= {1,2,3,4})#True

2.并集

集合1 | 集合2 - 将两个集合中的元素合并在一起产生一个新的集合

3.交集

**集合1 & 集合2 **- 使用两个集合中公共的元素,创建一个新的集合

4.差集

集合1 - 集合2 - 将集合1除了集合2的部分外 创建一个新的集合

5.补集

集合1 ^ 集合2 - 将两个集合中除了公共部分以外的元素创建一个新的集合

set1 = {1,2,3,4,5}
set2 = {4,5,6,7}
print(set1 | set2) #{1, 2, 3, 4, 5, 6, 7}
print(set1 & set2) #{4, 5}
print(set1 - set2) #{1, 2, 3}
print(set1 ^ set2) #{1, 2, 3, 6, 7}
上一篇下一篇

猜你喜欢

热点阅读