首页 > 其他 > 详细

Dictionary subtraction

时间:2014-08-17 18:16:02      阅读:377      评论:0      收藏:0      [点我收藏+]

Finding the words from the book that are not in the word list from words.txt is a problem you might recognize as set subtraction; that is, we want to find all the words from one set (the words in the book) that are not in another set (the words in the list).

subtract takes dictionaries d1 and d2 and returns a new dictionary that contains all the keys from d1 that are not in d2. Since we don’t really care about the values, we set them all to None.

bubuko.com,布布扣 

……

Some of these words are names and possessives. Others are no longer in common use. But a few are common words that should really be on the list!

 

from Thinking in Python

Dictionary subtraction,布布扣,bubuko.com

Dictionary subtraction

原文:http://www.cnblogs.com/ryansunyu/p/3917945.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!