Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
939 views
in Technique[技术] by (71.8m points)

dictionary - Divide the values of two dictionaries in python

I have two dictionaries with the same keys and I would like to do division on the values to update or create a new dictionary, keeping the keys intact, with the quotient as the new value for each of the keys.

d1 = { 'a':12 , 'b':10 , 'c':2 }
d2 = { 'a':0 , 'c':2 , 'b':5}
d3 = d2 / d1

d3 = { 'a':0 , 'b':0.5 , 'c':1 }

Aside from iterating through the key, value pairs and creating ordered lists of the values, then dividing, I'm not sure how to do this. I was hoping for a more elegant solution.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Using viewkeys (python2.7):

{k: float(d2[k])/d1[k] for k in d1.viewkeys() & d2}

Same in python 3 (where we can drop the float() call altogether):

{k: d2[k]/d1[k] for k in d1.keys() & d2}

Yes, I am using a key intersection here; if you are absolutely sure your keys are the same in both, just use d2:

{k: float(d2[k])/d1[k] for k in d2}

And to be complete, In Python 2.6 and before you'll have to use a dict() constructor with a generator expression to achieve the same:

dict((k, float(d2[k])/d1[k]) for k in d2)

which generates a sequence of key-value tuples.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...