Path: csiph.com!usenet.pasdenom.info!aioe.org!news.stack.nl!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.007 X-Spam-Evidence: '*H*': 0.99; '*S*': 0.00; 'subject:Python': 0.05; 'see.': 0.07; '[0,': 0.09; 'received:mail-qc0-f174.google.com': 0.09; 'cc:addr:python-list': 0.10; 'concatenate': 0.16; 'oct': 0.16; 'relevant,': 0.16; 'wrote:': 0.17; 'thu,': 0.17; '>>>': 0.18; 'example': 0.23; 'cc:no real name:2**0': 0.24; 'cc:2**1': 0.24; 'cc:addr:python.org': 0.25; 'header:In-Reply-To:1': 0.25; 'skip:[ 10': 0.26; 'am,': 0.27; 'cc:addr:gmail.com': 0.27; 'message-id:@mail.gmail.com': 0.27; 'subject:list': 0.28; 'initial': 0.28; '>>>>': 0.29; 'no,': 0.29; 'subject: ?': 0.30; 'another': 0.33; 'received:google.com': 0.34; 'list': 0.35; 'received:209.85': 0.35; 'but': 0.36; 'subject:with': 0.36; 'received:209': 0.37; 'received:209.85.216': 0.37; 'subject:: ': 0.38; 'mean': 0.38; 'header:Received:5': 0.40; 'help': 0.40; 'dont': 0.64; 'more?': 0.91; 'angel': 0.93 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=C9FulAymR2lUDu/BH7mIUpBaJTM1oIKaAUfdcr9uPbc=; b=Tn0w3DCAjqzrcfzzkKnJcuPFzJnec/5kiSLfuvmpEmfWwdjfe8qhMzKBaaxzyv75i0 2Gznp8VRnjgqWPYnivcVsbbfiwnq1SMkxkT8wk4gch1cqSoEsJrw46amJt8k3z4rZ+Xx w+ZiGwcfZ6iflpt4yCQgC0m0mFxDxB6PoQnGSMkgmT0wB5L32FEEF2fSFLsrZj5zAXAV pHJXwXFrU1RfHgsGs3kWBY7nf0Okvyb7anOQdT6h8Pu5187RB069aONd/dM+vHlPMUos e4ixWJx7cwEvEHPPz0wydP8leFjL8FtR7UoAnFuiMU0qsUexfXCx9b2WEnS3fMeOjGYf a42w== MIME-Version: 1.0 In-Reply-To: <508906DF.1090804@davea.name> References: <901739839.1116059.1350990465261.JavaMail.root@sequans.com> <50890388.8030809@davea.name> <508906DF.1090804@davea.name> Date: Thu, 25 Oct 2012 05:47:50 -0400 Subject: Re: can we append a list with another list in Python ? From: David Hutto To: d@davea.name Content-Type: text/plain; charset=ISO-8859-1 Cc: python-list@python.org 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: 33 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1351158473 news.xs4all.nl 6874 [2001:888:2000:d::a6]:60223 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:32102 On Thu, Oct 25, 2012 at 5:31 AM, Dave Angel wrote: > On 10/25/2012 05:21 AM, inshu chauhan wrote: >>> >>> or if the clist initial contents were relevant, perhaps you mean >>> >>>> clist += alist, blist >>> >> >> But not this because it will simply concatenate the list like >> [1,2,3,4,5,6] .. I dont want this actaully... >> >>> > > No, it won't. Try it to see. > Is this what you mean: >>> list_1 = [i for i in range(0,5)] >>> list_2 = [i for i in range(5,11)] >>> 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? -- Best Regards, David Hutto CEO: http://www.hitwebdevelopment.com