Path: csiph.com!usenet.pasdenom.info!weretis.net!feeder1.news.weretis.net!feeder.erje.net!eu.feeder.erje.net!npeer.de.kpn-eurorings.net!npeer-ng0.de.kpn-eurorings.net!news.tele.dk!news.tele.dk!small.news.tele.dk!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.013 X-Spam-Evidence: '*H*': 0.97; '*S*': 0.00; 'interpreter': 0.05; 'php,': 0.09; 'subject:language': 0.09; 'python': 0.11; 'itself.': 0.14; '"a"': 0.16; '6:00': 0.16; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'integers,': 0.16; 'sense,': 0.16; 'terrified': 0.16; 'typeerror:': 0.16; 'unlikely': 0.16; 'wrote:': 0.18; '>>>': 0.22; 'mention': 0.26; 'header:In-Reply- To:1': 0.27; 'message-id:@mail.gmail.com': 0.30; 'that.': 0.31; '"",': 0.31; "d'aprano": 0.31; 'steven': 0.31; 'file': 0.32; 'quite': 0.32; '(most': 0.33; 'subject: (': 0.35; "can't": 0.35; 'but': 0.35; 'received:google.com': 0.35; "he's": 0.36; 'sequence': 0.36; 'easily': 0.37; 'being': 0.38; 'nov': 0.38; 'to:addr:python-list': 0.38; 'pm,': 0.38; 'recent': 0.39; 'to:addr:python.org': 0.39; "you're": 0.61; 'haunt': 0.84; 'faced': 0.91; 'imagine': 0.93; '2013': 0.98 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; bh=naRMjo8l4zhZ5OK97yF0ar1RUqOm1naIuq9XTY9XcWs=; b=lyJLE4agK9Lq7N4QMj3EWZe2wg9nEpnsV7C6WvAtMu4fSfIFMjUNwvNfyk3i6qlJMw 0PcxwzOrOWVkSFzMKCJVO477vJHA8+9SuKJO3G51cXWb0ZByCDNlgFEN512b3uWgbrSx 5cOWUwmLZWRmoNhMNDSlcznXopfOCmelQ+aKfG6ePZtwGBTLcoguJu1+QSnQSMT+v8G0 OhVuPvSqwSkbVzo/fAqMA0C20L4pFOmNgdG5k0cQk9eYSCcgmy/iKMogihXBjuETYZ0n NCrSHVOfLqXWPUY/rx0ZtvqFmzlkelTSkTmBwkizHZFX+8BadLGPwyBgjEXV2gSU8Hup A8vA== MIME-Version: 1.0 X-Received: by 10.68.137.103 with SMTP id qh7mr53545pbb.175.1384845536303; Mon, 18 Nov 2013 23:18:56 -0800 (PST) In-Reply-To: <528b0c85$0$11089$c3e8da3@news.astraweb.com> References: <1f0ffad0-f9b1-4154-b048-510d8e38846e@googlegroups.com> <4866750c-2e2f-4289-b2bd-df4a565fcf7b@googlegroups.com> <528b0c85$0$11089$c3e8da3@news.astraweb.com> Date: Tue, 19 Nov 2013 18:18:56 +1100 Subject: Re: Oh look, another language (ceylon) From: Chris Angelico To: python-list@python.org Content-Type: text/plain; charset=ISO-8859-1 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: 28 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1384845545 news.xs4all.nl 15999 [2001:888:2000:d::a6]:49541 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:59960 On Tue, Nov 19, 2013 at 6:00 PM, Steven D'Aprano wrote: >> py> "a" * "4" >> 'aaaa' >> >> Okay, that makes sense, but what about: >> >> py> "a" * "aaaa" >> >> That will haunt your nightmares! > > You're easily terrified if you have nightmares about that. I can't > imagine what you would do if faced with the M-combinator applied to > itself. Not to mention that he has to construct his own nightmares. This not being PHP, it's unlikely to work quite the way he thinks it does: >>> "a" * "4" Traceback (most recent call last): File "", line 1, in "a" * "4" TypeError: can't multiply sequence by non-int of type 'str' Unless he has some strange Python interpreter that coalesces integer-like strings to integers, of course, in which case I completely understand why he's having nightmares. ChrisA