㈠ python列表如何转字典 取相同key值把values相加
mobile=[['apple','ios','100','10'],['pear','android','200','20'],['apple','ios','500','50'],['pear','android','600','60']]
mobiledict={}
foreleminmobile:
key=(elem[0],elem[1])
ifkeyinmobiledict:
mobiledict[key][0]+=int(elem[2])
mobiledict[key][1]+=int(elem[3])
else:
mobiledict[key]=[int(elem[2]),int(elem[3])]
print(mobiledict)
㈡ python 字典怎么增加元素
直接加,比如说
fuck={}
fuck["Tom"]="Jerry"
㈢ python用字典统计不同字符的个数
这里用到了字典基本的建立,value调用,键值对增加,value修改,以及items()函数。
编程实现
流程:文件遍历-除去空白——判断字典中有无该字符——有则Value加1,无则新建为1—备樱—按Value排序并返回
具体实现代码如下:
#统计txt文件中的字符频率
def countwords(txt):
stat = {}#建立字典存储存储字符和对应频率
for line in txt:
line = line.strip()
if len(line) == 0:
continue
for i in range(len(line)):
#判知滚答断有无该字符的键
if(line[i] in stat):
stat[line[i]]+=1
else:
stat[line[i]]=1
result=sorted(stat.items(),key = lambda x:x[1],reverse = True)#按value大小排序
return result
xyj = open('xyj.txt' ,'r',encoding = 'utf-8')#读文件
r=countwords(xyj)#调用函搭慧数
xyj.close
㈣ python3 求字典中的指定值的和
basket_items = {'apples': 4, 'oranges': 19, 'kites': 3, 'sandwiches': 8}
fruits = ['apples', 'oranges', 'pears', 'peaches', 'grapes', 'bananas']
is_fruits_num = sum([basket_items[x] for x in basket_items if x in fruits])
not_fruits_num = sum([basket_items[x] for x in basket_items if x not in fruits])
print("水果数量:"+str(is_fruits_num))
print("非水果数量:"+str(not_fruits_num))
㈤ python 如何将字典中的value值求和
打开编辑器,写上注释内容。
python 中如何取得字典中所有value的值?
新建一个函数getvalue
python 中如何取得字典中所有value的值?
新建一个字典。
zidian={"country1":"america","country2":"australia","country3":"germany"}
python 中如何取得字典中所有value的值?
利用values这个方法来获取字典中的所有Vlue值,并将结果打印出来。
python 中如何取得字典中所有value的值?
调用这个函数。
getvalue()
python 中如何取得字典中所有value的值?
选择菜单中的“run”
python 中如何取得字典中所有value的值?
这时候我们就可以看到字典中的所有value值已经打印出来了。
python 中如何取得字典中所有value的值?
㈥ 怎么把python字典的里的所有列表值相加
deftotal_takings(yearly_record):
sum=0
forkey,valueinyearly_record.items():
foriinvalue:
sum+=i
returnsum
㈦ python-字典
1、字典:
两大特点:无序,键唯一
无序存储,键值对的形式存储数据
键是唯一不可修改的,不能用列表做键
2、python中不可变类型:整形,字符串,元组
可变类型:字典,列表
3、字典中方法:
增加:
dic1 = {'name':'alex'}
dic1 = ['age'] =18
*dic1 = {'age':18,'name':'alex'}
dic1.setdefault() 键存在,不改动,返回字典相应键对应的值,键不存在,在字典中增加新的键值对,并返回相应的值
查找:
通过键查找
dic1.keys()打印字典中所有键
#dict1.keys['name','age'] --转换成列表:list(dic1.keys())
dic1.values()打印字典中所有值
dic1.items()打印所有键值对
修改:
直接赋值
dic3= {'name':'alex','age':18}
dic4 = {'sex':'male','age':36}
dic3.update(dic4) #有相同的key,值会修改
删除:
dic.clear() #清空字典
del dic['name'] #删除字典中指定键值对
dic.pop('age')#删除字典中指定键值对,并返回该键值对的值
dic.popitem() #随机删除键值对,并以元组方式返回
其他操作涉及的方法:
dic1 =dict.formkeys(['host1','host2'],'test')#{'host1':'test','host2':'test'}
dic1 =dict.formkeys(['host1','host2','host3'],['test1','test2'])#{'host1':['test1','test2'],'host2':['test1','test2'],'host3':['test1','test2']}
dic1['host2'][1] = 'test3' #{'host3':['test1''test3'],'host2':['test1''test3'],'host1':['test1''test3']}
字典的嵌套:
字典的排序:
字典的遍历:
字符串的操作
a = '123'
b= 'abc'
c = a+b #123abc
c='****'.join([a,b])#123****abc
st = 'hello kitty{name} is {age}'
st.count('l') #2 统计元素个数
st.captialize() #Hello kitty 首字母大写
st.center(50,'-')#--------hello kitty --------居中
st.endswith('tty3')#判断是否以某个内容结尾
st.startswith('he')#判断是否以某个内容开头
st.find('t') #8 查找第一个元素,并返回索引,不存在是返回-1
st.format(name = 'alex',age= 37)#hello kitty alex is 37
st.format_map({'name' :'alex','age':27})#hello kitty alex is 27
st.index('t') #8 返回索引,找不到报错
‘ab'.isalnum()
'123'.isdigit()