Path: csiph.com!usenet.pasdenom.info!weretis.net!feeder1.news.weretis.net!feeder.erje.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.040 X-Spam-Evidence: '*H*': 0.92; '*S*': 0.00; 'afterwards.': 0.16; 'received:dip.t-dialin.net': 0.16; 'received:t-dialin.net': 0.16; 'subject:item': 0.16; 'tup': 0.16; 'wrote:': 0.17; 'header:In- Reply-To:1': 0.25; 'header:User-Agent:1': 0.26; 'skip:[ 10': 0.26; 'merge': 0.27; 'subject:list': 0.28; 'chris': 0.28; 'received:84': 0.32; 'to:addr:python-list': 0.33; 'pm,': 0.35; 'item': 0.37; 'subject:: ': 0.38; 'to:addr:python.org': 0.39; 'subject:before': 0.84 Date: Mon, 08 Oct 2012 22:12:09 +0200 From: Agon Hajdari User-Agent: Mozilla/5.0 (X11; Linux i686; rv:15.0) Gecko/20120912 Thunderbird/15.0.1 MIME-Version: 1.0 To: python-list@python.org Subject: Re: Insert item before each element of a list References: In-Reply-To: X-Enigmail-Version: 1.4.4 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit 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: 7 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1349727261 news.xs4all.nl 6928 [2001:888:2000:d::a6]:34499 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:30972 On 10/08/2012 09:45 PM, Chris Kaynor wrote: > [('insertme', i) for i in x] This is not enough, you have to merge it afterwards. y = [item for tup in y for item in tup]