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: =?UTF-8?Q?Nagy_L=c3=a1szl=c3=b3_Zsolt?= 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: References: 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: 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: X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.20+ Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Xref: csiph.com comp.lang.python:99144 > 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?