Path: csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!gegeweb.org!de-l.enfer-du-nord.net!feeder1.enfer-du-nord.net!newsfeed.eweka.nl!eweka.nl!feeder3.eweka.nl!newsfeed.xs4all.nl!newsfeed5.news.xs4all.nl!xs4all!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.018 X-Spam-Evidence: '*H*': 0.96; '*S*': 0.00; 'received:209.85.210.174': 0.13; 'received:mail-iy0-f174.google.com': 0.13; 'subject:was': 0.15; '42,': 0.16; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'kern': 0.16; 'subject: \n ': 0.16; 'subject:syntax': 0.16; 'wrote:': 0.18; 'subject:not': 0.21; 'dec': 0.22; 'header:In-Reply-To:1': 0.22; 'message- id:@mail.gmail.com': 0.28; 'pm,': 0.29; 'thu,': 0.32; 'programmers': 0.32; 'subject:]': 0.32; 'to:addr:python-list': 0.34; 'received:google.com': 0.37; 'think': 0.37; 'received:209.85': 0.38; 'received:209': 0.40; 'to:addr:python.org': 0.40; 'might': 0.40; 'more': 0.61; '2011': 0.61 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; bh=Rd0/Vf/L/BGGkXE47i9j7eOFza8Y+Chfj2XPZrjxfWE=; b=xrSsqqYvtJ9tSdYdVd1uQaTMT1RZWPgTbNYpHv1SwgvfPxeBcGD+fHGcz40MBQuPOc nRfgxtkxNyGB1pseqn5afAQbhu9ngcErwTcSIeF3vY5z0vW7SYivh1qmKvfNXHTwrsV+ dWZjRYP4Zp3exVwZPAv7A8L5kslgbiOTGAxB8= MIME-Version: 1.0 In-Reply-To: References: <4ee81592$0$11091$c3e8da3@news.astraweb.com> <4ee89762$0$29979$c3e8da3$5496439d@news.astraweb.com> Date: Thu, 15 Dec 2011 21:58:30 +1100 Subject: Re: % is not an operator [was Re: Verbose and flexible args and kwargs syntax] From: Chris Angelico To: python-list@python.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.12 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: 10 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1323946713 news.xs4all.nl 6965 [2001:888:2000:d::a6]:52321 X-Complaints-To: abuse@xs4all.nl Xref: x330-a1.tempe.blueboxinc.net comp.lang.python:17260 On Thu, Dec 15, 2011 at 9:47 PM, Robert Kern wrote: > 42 =3D 2 mod 5 > =A02 =3D 42 mod 5 It might make more sense to programmers if you think of it as written: 42 =3D 2, mod 5 2 =3D 42, mod 5 ChrisA