Path: csiph.com!usenet.pasdenom.info!weretis.net!feeder1.news.weretis.net!feeder.erje.net!newsfeed.xs4all.nl!newsfeed6.news.xs4all.nl!xs4all!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.003 X-Spam-Evidence: '*H*': 0.99; '*S*': 0.00; 'output': 0.04; 'subject:Python': 0.05; 'python': 0.09; '[0,': 0.09; 'received :mail-qc0-f174.google.com': 0.09; 'cc:addr:python-list': 0.10; 'aug': 0.13; '2.7.3': 0.16; 'all...': 0.16; 'oct': 0.16; 'skip:> 20': 0.16; 'thanx': 0.16; 'wrote:': 0.17; 'thu,': 0.17; '>>>': 0.18; 'example': 0.23; 'cc:2**1': 0.24; 'cc:addr:python.org': 0.25; 'header:In-Reply-To:1': 0.25; 'am,': 0.27; 'message- id:@mail.gmail.com': 0.27; 'subject:list': 0.28; 'subject: ?': 0.30; 'lists': 0.31; 'problem': 0.33; 'another': 0.33; 'received:google.com': 0.34; 'received:209.85': 0.35; 'there': 0.35; 'really': 0.36; 'but': 0.36; 'cc:no real name:2**1': 0.36; 'subject:with': 0.36; 'received:209': 0.37; 'received:209.85.216': 0.37; 'subject:: ': 0.38; 'easier': 0.38; 'skip:l 20': 0.38; 'header:Received:5': 0.40; 'help': 0.40; 'more': 0.63; 'dont': 0.64; 'more?': 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 :cc:content-type; bh=Cv1flZbyXekZa86RQDPWIXHrOflOR41Fl3qHnLkS4Zw=; b=YwOp1tdvpJNCtCx68Skbb5S6GewVIkNZLH0ettlsy077gFyeDwv45zm75lUWRmpPy0 7/GMAFgm9rfQxKiFe38bF2AS8LdCocrGJMOdKthx0xErjUS1yyTwlskm7gtKPEpgpOjB w6Rgu6CfFtTJvIUiy/GcZmiDd2VU7pUtfbz46W67gn0GzjnyfXdegLenIIBBSgXto+NB aXB8upHnpN/Cyr39qhlDO9jchu28tODlncxGneLVV0d1KAVU69ZcA8mG3VEG97bkS11W 4sU0HWOxh4Ab501+QZUK0H5erfVnFh/mwhT+8a1lahIBmviY31UA0iEv82vwHjQTuPO9 xQTQ== MIME-Version: 1.0 In-Reply-To: References: <901739839.1116059.1350990465261.JavaMail.root@sequans.com> <50890388.8030809@davea.name> <508906DF.1090804@davea.name> Date: Thu, 25 Oct 2012 06:04:30 -0400 Subject: Re: can we append a list with another list in Python ? From: David Hutto To: inshu chauhan Content-Type: text/plain; charset=ISO-8859-1 Cc: python-list@python.org, d@davea.name 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: 58 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1351159472 news.xs4all.nl 6974 [2001:888:2000:d::a6]:50966 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:32108 On Thu, Oct 25, 2012 at 5:58 AM, inshu chauhan wrote: > Yes Dave ..You are right and my problem is solved now.. Thanx to all... > > > On Thu, Oct 25, 2012 at 11:55 AM, David Hutto > wrote: >> >> On Thu, Oct 25, 2012 at 5:51 AM, inshu chauhan >> wrote: >> > >> > >> >> >> >> Is this what you mean: >> >> >> list_0 = [] >> list_1 = [i for i in range(0,5)] >> list_2 = [i for i in range(5,11)] >> list_0.append(list_1) >> list_0.append(list_2) >> >> >>> for i in list_2: >> >> ... list_1.append(i) >> >> ... >> >> >>> list_1 >> >> [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10] >> >> >> >> >> >> or would another example help you out more? >> > >> > >> > No but really sorry this is what I DONT WANT....... >> > >> > The output I want to have is : >> > >> > [ [0, 1, 2, 3, 4 ], [5, 6, 7, 8, 9, 10] ]..... >> >> Then, this is what you want : >> >> >>david@david-desktop:~$ python >> Python 2.7.3 (default, Aug 1 2012, 05:16:07) >> [GCC 4.6.3] on linux2 >> Type "help", "copyright", "credits" or "license" for more information. >> >>> list_0 = [] >> >>> list_1 = [i for i in range(0,5)] >> >>> list_2 = [i for i in range(5,11)] >> >>> list_0.append(list_1) >> >>> list_0.append(list_2) >> >>> list_0 >> [[0, 1, 2, 3, 4], [5, 6, 7, 8, 9, 10]] if you have a format for the lists, there might be an easier way, or simpler. How are the lists coming in? -- Best Regards, David Hutto CEO: http://www.hitwebdevelopment.com