Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #106220

Re: Strange range

Path csiph.com!fu-berlin.de!uni-berlin.de!not-for-mail
From Chris Angelico <rosuav@gmail.com>
Newsgroups comp.lang.python
Subject Re: Strange range
Date Sat, 2 Apr 2016 00:24:49 +1100
Lines 8
Message-ID <mailman.309.1459517092.28225.python-list@python.org> (permalink)
References <87y48xjwqq.fsf@elektro.pacujo.net>
Mime-Version 1.0
Content-Type text/plain; charset=UTF-8
X-Trace news.uni-berlin.de 3znuW0xY9APN8gShfLSVXwz0dYRHRvmZFwI9TV7eaTzw==
Return-Path <rosuav@gmail.com>
X-Original-To python-list@python.org
Delivered-To python-list@mail.python.org
X-Spam-Status OK 0.003
X-Spam-Evidence '*H*': 0.99; '*S*': 0.00; 'received:209.85.223': 0.03; 'cc:addr:python-list': 0.09; 'implies': 0.09; '2016': 0.16; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'iterator': 0.16; 'iterator,': 0.16; 'iterator.': 0.16; 'received:io': 0.16; 'received:psf.io': 0.16; 'which,': 0.16; 'wrote:': 0.16; 'cc:2**0': 0.20; 'cc:addr:python.org': 0.20; 'am,': 0.23; 'sat,': 0.23; 'header:In-Reply-To:1': 0.24; 'message- id:@mail.gmail.com': 0.27; 'gives': 0.35; 'received:google.com': 0.35; 'received:209.85': 0.36; 'subject:: ': 0.37; 'received:209': 0.38; 'called': 0.40; 'chrisa': 0.84; 'to:none': 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:cc; bh=xUSoD2L07ITOmqwCztDKQi+Tb18d/sOfuYgIQRTQ/Mo=; b=fO7S0YD74JnL9em9FyV7gYJj1eE5n2YFUVRWBIBdoFfYKgCzfjLegu7fFGV5qpXVgu cPTxgIZ3R3cR8lmDjIh6cn8VSWRtibB/Sst/Ih7TBht3eoUYRR36OJph3TAV+irEjRHp b3Po+3IJDLvAsGNc2ACvkvDxwkEHU+8ttFBPoiS7HeIdtc+9vB3ziuPyr9lQ61uTxTmt OKskZslfX9rkcUsMoVmkIY/Mw0rLRltJOr9M/zcBI3eeKb7qb3/koWEXlBULYeyCPOlW PMz2OogTKLkKZFixoUes4ry9xbSINMCk5b9k3fTBWPe5E7dOB5UOzdTfEnP5VEBSGsru PGhQ==
X-Google-DKIM-Signature v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:date :message-id:subject:from:cc; bh=xUSoD2L07ITOmqwCztDKQi+Tb18d/sOfuYgIQRTQ/Mo=; b=MB2LngRTpsWPL74PCdCHVtrMAutB2IgOIVpBG2v6/0fKqqmLKgD4G7Niel8CqlhLJo GDVdxXryoT3ReDS3UdGQihq+nsvCmssaTOoiVcTMATePmnWKVAUlv4JEWKZaasbUFUkX fGh1EqkVvtxP/F7K90Fi94Wdvc5uQ8gvcsWazyZLzbWre9w3CXaCa2dZMeVzuOyQfZPZ luckfzVCJsimKYYxcV7kBO+Ta7ySFHdtXlQruVSsNjsRCIJn5ugMK2oao3XNM8hXWz0o mYxWZtt5lB/O1soH+HAkLD85D7qYxmqjAKqo88RoM1Z6xjgGFbD7YYp/5r4QNxcFh8zp AbDw==
X-Gm-Message-State AD7BkJIW4X8ZmeM27s8Q0TzLRhTNEk3qGrcrNr+vPiB4ATA2lvq11fHzNYbQVqJYcyUpVEX8ip9cTbuysJ7FxA==
X-Received by 10.107.137.101 with SMTP id l98mr4470575iod.31.1459517089969; Fri, 01 Apr 2016 06:24:49 -0700 (PDT)
In-Reply-To <87y48xjwqq.fsf@elektro.pacujo.net>
X-BeenThere python-list@python.org
X-Mailman-Version 2.1.21
Precedence list
List-Id General discussion list for the Python programming language <python-list.python.org>
List-Unsubscribe <https://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe>
List-Archive <http://mail.python.org/pipermail/python-list/>
List-Post <mailto:python-list@python.org>
List-Help <mailto:python-list-request@python.org?subject=help>
List-Subscribe <https://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe>
Xref csiph.com comp.lang.python:106220

Show key headers only | View raw


On Sat, Apr 2, 2016 at 12:15 AM, Marko Rauhamaa <marko@pacujo.net> wrote:
> Note to self: range(10) is an iterator factory, not an iterator.

It is an iterable. It is not a factory, as that implies that you call
it. It is an object which, when you ask it for an iterator, gives you
an iterator. That's called an iterable.

ChrisA

Back to comp.lang.python | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

Strange range Marko Rauhamaa <marko@pacujo.net> - 2016-04-01 16:15 +0300
  Re: Strange range Chris Angelico <rosuav@gmail.com> - 2016-04-02 00:24 +1100
  Re: Strange range Steven D'Aprano <steve@pearwood.info> - 2016-04-02 00:26 +1100
    Re: Strange range Marko Rauhamaa <marko@pacujo.net> - 2016-04-01 17:12 +0300
      Re: Strange range Random832 <random832@fastmail.com> - 2016-04-01 10:39 -0400
    Re: Strange range Fabien <fabien.maussion@gmail.com> - 2016-04-01 16:16 +0200
      Re: Strange range Jussi Piitulainen <jussi.piitulainen@helsinki.fi> - 2016-04-01 17:28 +0300
      Re: Strange range Chris Angelico <rosuav@gmail.com> - 2016-04-02 01:31 +1100
        Re: Strange range Marko Rauhamaa <marko@pacujo.net> - 2016-04-01 17:34 +0300
          Re: Strange range Jussi Piitulainen <jussi.piitulainen@helsinki.fi> - 2016-04-01 17:44 +0300
          Re: Strange range Chris Angelico <rosuav@gmail.com> - 2016-04-02 01:45 +1100
            Re: Strange range Marko Rauhamaa <marko@pacujo.net> - 2016-04-01 18:43 +0300
          Re: Strange range Erik <python@lucidity.plus.com> - 2016-04-01 20:58 +0100
            Re: Strange range Marko Rauhamaa <marko@pacujo.net> - 2016-04-01 23:14 +0300
              Re: Strange range Rob Gaddi <rgaddi@highlandtechnology.invalid> - 2016-04-01 20:21 +0000
                Re: Strange range Marko Rauhamaa <marko@pacujo.net> - 2016-04-01 23:44 +0300
              Re: Strange range Steven D'Aprano <steve@pearwood.info> - 2016-04-02 21:09 +1100
                Re: Strange range Marko Rauhamaa <marko@pacujo.net> - 2016-04-02 13:48 +0300
          Re: Strange range Ned Batchelder <ned@nedbatchelder.com> - 2016-04-02 12:47 -0700
            Re: Strange range Marko Rauhamaa <marko@pacujo.net> - 2016-04-02 23:44 +0300
              Re: Strange range Chris Angelico <rosuav@gmail.com> - 2016-04-03 07:05 +1000
                Re: Strange range Marko Rauhamaa <marko@pacujo.net> - 2016-04-03 00:40 +0300
                Re: Strange range Ned Batchelder <ned@nedbatchelder.com> - 2016-04-02 14:50 -0700
                Re: Strange range Stephen Hansen <me+python@ixokai.io> - 2016-04-02 23:43 -0700
                Re: Strange range Marko Rauhamaa <marko@pacujo.net> - 2016-04-03 09:58 +0300
                Re: Strange range Chris Angelico <rosuav@gmail.com> - 2016-04-03 17:10 +1000
                Re: Strange range Ethan Furman <ethan@stoneleaf.us> - 2016-04-03 09:28 -0700
                Re: Strange range Mark Lawrence <breamoreboy@yahoo.co.uk> - 2016-04-04 13:21 +0100
                Re: Strange range Chris Angelico <rosuav@gmail.com> - 2016-04-03 17:08 +1000
              Re: Strange range Steven D'Aprano <steve@pearwood.info> - 2016-04-03 14:43 +1000
                Re: Strange range Random832 <random832@fastmail.com> - 2016-04-03 01:20 -0400
                Re: Strange range Steven D'Aprano <steve@pearwood.info> - 2016-04-03 15:28 +1000
      Re: Strange range Marko Rauhamaa <marko@pacujo.net> - 2016-04-01 17:32 +0300
  Re: Strange range Random832 <random832@fastmail.com> - 2016-04-01 10:42 -0400
  Re: Strange range Chris Angelico <rosuav@gmail.com> - 2016-04-02 01:50 +1100
  Re: Strange range Ian Kelly <ian.g.kelly@gmail.com> - 2016-04-01 08:52 -0600

csiph-web