Path: csiph.com!usenet.pasdenom.info!aioe.org!news.stack.nl!newsfeed.xs4all.nl!newsfeed2.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.019 X-Spam-Evidence: '*H*': 0.96; '*S*': 0.00; 'release.': 0.09; 'missed': 0.12; '2.7': 0.14; "'c',": 0.16; '-tkc': 0.16; 'from:addr:python.list': 0.16; 'from:addr:tim.thechases.com': 0.16; 'from:name:tim chase': 0.16; 'subject: \n ': 0.16; 'subject:dictionaries': 0.16; 'wrote:': 0.18; '>>>': 0.22; 'replace': 0.24; 'header:In-Reply-To:1': 0.27; 'tim': 0.29; 'getting': 0.31; '3.x': 0.31; 'chase': 0.31; 'quite': 0.32; 'could': 0.34; 'charset:us-ascii': 0.36; 'thanks': 0.36; 'to:addr :python-list': 0.38; 'skip:. 10': 0.39; 'to:addr:python.org': 0.39; 'introduction': 0.68; 'otten': 0.84; 'received:50.22': 0.84 Date: Tue, 25 Feb 2014 16:10:34 -0600 From: Tim Chase To: python-list@python.org Subject: Re: intersection, union, difference, symmetric difference for dictionaries In-Reply-To: References: <20140225150351.063fd961@bigbox.christie.dr> X-Mailer: Claws Mail 3.8.1 (GTK+ 2.24.10; x86_64-pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - boston.accountservergroup.com X-AntiAbuse: Original Domain - python.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - tim.thechases.com X-Get-Message-Sender-Via: boston.accountservergroup.com: authenticated_id: tim@thechases.com X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 26 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1393366205 news.xs4all.nl 2951 [2001:888:2000:d::a6]:33392 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:67067 On 2014-02-25 22:54, Peter Otten wrote: > Tim Chase wrote: > > If dicts were to support set ops, > > They do in 2.7 and 3.x. > > >>> a.viewkeys() - b.viewkeys() > set(['a']) > >>> a.viewkeys() & b.viewkeys() > set(['b']) > >>> a.viewkeys() ^ b.viewkeys() > set(['a', 'c']) > >>> a.viewkeys() | b.viewkeys() > set(['a', 'c', 'b']) > > For 3.x replace viewkeys() with keys(). I missed this getting added in the 2.7 release. Thanks for the introduction to .viewkeys()/.keys() as they could prove quite handy. -tkc