Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #99144
| Path | csiph.com!au2pb.net!feeder.erje.net!1.eu.feeder.erje.net!newsfeed.kamp.net!newsfeed.kamp.net!fu-berlin.de!uni-berlin.de!not-for-mail |
|---|---|
| From | Nagy László Zsolt <gandalf@shopzeus.com> |
| Newsgroups | comp.lang.python |
| Subject | Re: How To Create A Endles List Of Lists In Python...??? |
| Date | Fri, 20 Nov 2015 14:06:08 +0100 |
| Lines | 8 |
| Message-ID | <mailman.513.1448024777.16136.python-list@python.org> (permalink) |
| References | <n2miu8$fl4$1@ls237.t-com.hr> <mailman.510.1448009596.16136.python-list@python.org> <n2mugp$kt1$1@ls237.t-com.hr> |
| Mime-Version | 1.0 |
| Content-Type | text/plain; charset=windows-1252 |
| Content-Transfer-Encoding | 7bit |
| X-Trace | news.uni-berlin.de pHqxksLtOIEb8hDKjxWqnA5W/3lri6sera+vDi3fKiVQ== |
| Return-Path | <gandalf@shopzeus.com> |
| X-Original-To | python-list@python.org |
| Delivered-To | python-list@mail.python.org |
| X-Spam-Status | OK 0.041 |
| X-Spam-Evidence | '*H*': 0.92; '*S*': 0.00; 'list...': 0.07; 'subject:How': 0.09; 'integer.': 0.16; 'iterable': 0.16; 'iterated': 0.16; 'received:io': 0.16; 'received:psf.io': 0.16; 'all,': 0.20; 'for?': 0.23; 'header:In-Reply-To:1': 0.24; 'indexed': 0.33; 'subject:List': 0.33; 'lists': 0.34; 'list': 0.34; 'question,': 0.35; 'but': 0.36; 'needed': 0.36; 'possible': 0.36; 'to:addr:python-list': 0.36; 'subject:: ': 0.37; 'list.': 0.37; 'end': 0.39; 'to:addr:python.org': 0.40; 'your': 0.60; 'charset:windows-1252': 0.62; 'subject:Lists': 0.91 |
| DKIM-Signature | v=1; a=rsa-sha256; c=relaxed/relaxed; d=shopzeus.com; s=shopzeus_com; t=1448024768; bh=zDWWteyngTy+ZDcbyt0g27VWwhqN7XMrcjCIwRwogiQ=; h=Subject:To:References:From:Date:In-Reply-To:From; b=PHzDwzQF+7tPTHe/1AJSiZjNE7TZkkGs+Zik4HbxoTZ3bJ7Am7xaLUNEQ+r+4qlZV U17FyBPRZ8K6rB2Gy3+vJ4oacCnRRzfAxIG507j08z6uBGXlMgHrruqT3vclAN4aBg ZmqstNJ6BVYlEVPDA2VCzJU0KkbDxGr/uKU628KZnrQ9CQ9tw5cJ82yhptjyt3wtWC Rnm0DYvcyj/tq8ksnhVvwj8r8IOkZ04tyWhawdUqS1G/3eAbO1eFTsxXPvsm9cGYTT ANRWg3CSlQbnbv9Ap9tsHYUHcAOZv9ccNx0aS/Tzn2exEcu8MEzljAKSxkqge47vai rmHT7bxJiHanA== |
| In-Reply-To | <n2mugp$kt1$1@ls237.t-com.hr> |
| X-BeenThere | python-list@python.org |
| X-Mailman-Version | 2.1.20+ |
| 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:99144 |
Show key headers only | View raw
> Sorry For Bad Question, But I need List Of Lists That I Can > Acces Horyzontaly, Not In The Deep(But This IS Not All, > I End That Evey List In List Of Lists Can Be A List... It is not possible to do it with a native list. But you can write your own iterable that can be iterated forever, and indexed with an integer. But before you do that: what is this needed for?
Back to comp.lang.python | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
How To Create A Endles List Of Lists In Python...??? "HKRSS" <hkrss@gmail.com> - 2015-11-20 08:43 +0100
Re: How To Create A Endles List Of Lists In Python...??? "HKRSS" <hkrss@gmail.com> - 2015-11-20 09:13 +0100
Re: How To Create A Endles List Of Lists In Python...??? Peter Otten <__peter__@web.de> - 2015-11-20 09:53 +0100
Re: How To Create A Endles List Of Lists In Python...??? "HKRSS" <hkrss@gmail.com> - 2015-11-20 12:00 +0100
Re: How To Create A Endles List Of Lists In Python...??? Nagy László Zsolt <gandalf@shopzeus.com> - 2015-11-20 14:06 +0100
Re: How To Create A Endles List Of Lists In Python...??? robert.bralic@si.t-com.hr - 2015-11-20 05:29 -0800
Re: How To Create A Endles List Of Lists In Python...??? Chris Angelico <rosuav@gmail.com> - 2015-11-21 00:09 +1100
Re: How To Create A Endles List Of Lists In Python...??? Grant Edwards <invalid@invalid.invalid> - 2015-11-20 15:58 +0000
Re: How To Create A Endles List Of Lists In Python...??? srinivas devaki <mr.eightnoteight@gmail.com> - 2015-11-20 23:58 +0530
Re: How To Create A Endles List Of Lists In Python...??? srinivas devaki <mr.eightnoteight@gmail.com> - 2015-11-21 00:05 +0530
Re: How To Create A Endles List Of Lists In Python...??? Denis McMahon <denismfmcmahon@gmail.com> - 2015-11-20 17:14 +0000
Re: How To Create A Endles List Of Lists In Python...??? robert.bralic@si.t-com.hr - 2015-11-20 10:16 -0800
Re: How To Create A Endles List Of Lists In Python...??? Ian Kelly <ian.g.kelly@gmail.com> - 2015-11-20 11:29 -0700
Re: How To Create A Endles List Of Lists In Python...??? Chris Angelico <rosuav@gmail.com> - 2015-11-21 05:30 +1100
Re: How To Create A Endles List Of Lists In Python...??? sohcahtoa82@gmail.com - 2015-11-20 11:26 -0800
csiph-web