Path: csiph.com!usenet.pasdenom.info!weretis.net!feeder4.news.weretis.net!ecngs!feeder2.ecngs.de!newsfeed.freenet.ag!news2.euro.net!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.014 X-Spam-Evidence: '*H*': 0.97; '*S*': 0.00; 'subject:Python': 0.05; 'python': 0.08; '21,': 0.09; 'first:': 0.09; 'argument': 0.15; '(eg': 0.16; '2")': 0.16; '4",': 0.16; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'omitting': 0.16; 'wed,': 0.17; 'wrote:': 0.18; 'received:209.85.210.174': 0.21; 'received:mail- iy0-f174.google.com': 0.21; "doesn't": 0.22; 'header:In-Reply- To:1': 0.22; 'english,': 0.23; 'steve': 0.24; 'code,': 0.28; 'message-id:@mail.gmail.com': 0.29; 'pm,': 0.29; 'equivalent': 0.31; 'to:addr:python-list': 0.35; 'received:google.com': 0.37; 'received:209.85': 0.38; 'e.g.': 0.39; 'received:209': 0.39; 'to:addr:python.org': 0.40; 'plus': 0.63; 'subject.': 0.68; 'divided': 0.73; 'descriptive': 0.84; 'howell': 0.84; 'idiom': 0.84; 'imperative': 0.91 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; bh=hAuT0QkS4nlBeNq0lqSKXKZ9SPDEFDmqOpMw3do4U4k=; b=GpXVrgFpkya8G9CDwuP+gsEIrWkgJKTVX9WDW/qqs8/GKGCdLoNwyVNZr/7yiaFTBz b9OyfS7L47G6BU3jrMc8V2zQKKslLrrlSo3eYKg7JXjUqm4DalsQczRZPN5RreRQdoJL QOxmYwI4TgnT/u2CeXMag1hNXns4oHjvMaIwnGTIcnFyC/AxQqKqV0svjiCRPicMSGan ASICRezF+GL5J+C+ETVsvp/cIrdtg9xxo1HRW+2o5UmtbvIPcLsqQX8hCYd3ERX82U3Z xtfkiYPlH/PumLrDrweEgfO6vApxA/HIVC6bBscqSeQOPwxveRsHqkigy7om8/ljQsc5 78ag== MIME-Version: 1.0 In-Reply-To: <6a4c821e-3672-401a-9a35-e0950734c22f@ms3g2000pbb.googlegroups.com> References: <4f612b19$0$1379$4fafbaef@reader2.news.tin.it> <4f691f3d$0$29981$c3e8da3$5496439d@news.astraweb.com> <87d386lmai.fsf@benfinney.id.au> <8a77bf8d-b12f-442b-a1a3-479b5d66d366@tx8g2000pbc.googlegroups.com> <6af70db0-dc4a-48ee-9ee2-1a934846d5f2@r2g2000pbs.googlegroups.com> <6a4c821e-3672-401a-9a35-e0950734c22f@ms3g2000pbb.googlegroups.com> Date: Wed, 21 Mar 2012 19:15:22 +1100 Subject: Re: Python is readable 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: 12 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1332317725 news.xs4all.nl 6863 [2001:888:2000:d::a6]:43766 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:21978 On Wed, Mar 21, 2012 at 6:57 PM, Steve Howell wrote: > =A0verb first: English-imperative ("boil water", "add noodles/salt", > "serve in dish") or math-functional, e.g. sum(a,b,c) > =A0verb middle: infix, arithmetic-like ("5 plus 4", "10 divided by 2") > or English-descriptive ("Dog bites man") In English, verb-first imperative is just verb-middle descriptive with an implied "You" as the subject. Its nearest equivalent in code, then, is the common idiom of omitting the 'this' argument (eg in C++), which Python doesn't support. ChrisA