Path: csiph.com!usenet.pasdenom.info!weretis.net!feeder4.news.weretis.net!feeds.phibee-telecom.net!newsfeed.xs4all.nl!newsfeed6.news.xs4all.nl!xs4all!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.004 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; 'oct': 0.16; 'skip:> 20': 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; 'another': 0.33; 'received:google.com': 0.34; 'received:209.85': 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; '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=+6prp5QrUbuuuDe7ldhViEPhqeFzYyR5E09+tE+hvUM=; b=pz/xj1el0E7A6Jk+6w88FdC18YT82gXdqxbvaiQeResHLzagCkwlzWWSoVSDIQnt4M tSUv1F9zGwQWVnlGIEPmlIU2tn0NtuWvsY4dpKhuYOrgQXDPzQerNytTcUoG4ZnIBweI kHpo41e1gtTCLAWUs8qhdYiGPWh0uYQyLyvP+u+Pr2KJeWfKL+fH71Il+qCfdR0F+fpW BDZtWMxP/Oc2FK7vxGST8iUrusB2vvdjsW9iwX2hRolaUs19pAUfFuMdIMRuVUyNYEq9 x+CUFECSW5N4DfI7lRnvX0FLCc2crP9SSzvmna8mt0Cdte6FNrlnm1L1FyasWWfjN6W9 5r5A== 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 05:55:41 -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: 49 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1351158943 news.xs4all.nl 6860 [2001:888:2000:d::a6]:40901 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:32106 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]] >>> -- Best Regards, David Hutto CEO: http://www.hitwebdevelopment.com