Path: csiph.com!usenet.pasdenom.info!news.etla.org!news.stack.nl!newsfeed.xs4all.nl!newsfeed4.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.001 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'elegant': 0.07; 'element': 0.07; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'subject:skip:c 10': 0.09; 'subject:How': 0.10; 'python': 0.11; 'def': 0.12; 'epoch': 0.16; 'mylist': 0.16; 'name)': 0.16; 'name):': 0.16; 'name=name)': 0.16; 'readable': 0.16; 'received:80.91.229.3': 0.16; 'received:dip0.t-ipconnect.de': 0.16; 'received:plane.gmane.org': 0.16; 'received:t-ipconnect.de': 0.16; 'skip:[ 40': 0.16; 'tup': 0.16; 'tuple': 0.16; 'tuples,': 0.16; 'unpacking': 0.16; 'wrote:': 0.18; 'variable': 0.18; 'header:User- Agent:1': 0.23; 'beauty': 0.24; 'helper': 0.24; 'integrate': 0.24; 'options': 0.25; 'define': 0.26; 'header:X-Complaints-To:1': 0.27; 'van': 0.27; 'function': 0.29; 'subject:list': 0.30; 'code': 0.31; 'that.': 0.31; '(i.e.': 0.33; 'could': 0.34; 'anybody': 0.35; 'but': 0.35; 'subject:?': 0.36; 'hi,': 0.36; 'two': 0.37; 'list': 0.37; 'skip:o 20': 0.38; 'skip:[ 10': 0.38; 'to:addr:python-list': 0.38; 'to:addr:python.org': 0.39; 'received:org': 0.40; 'even': 0.60; 'then,': 0.60; 'simple': 0.61; 'first': 0.61; 'name': 0.63; 'more': 0.64; 'within': 0.65; 'of:': 0.68; 'construction': 0.72; 'inline': 0.74; 'subject:this': 0.83; 'misses': 0.84 X-Injected-Via-Gmane: http://gmane.org/ To: python-list@python.org From: Peter Otten <__peter__@web.de> Subject: Re: How to write this as a list comprehension? Date: Sat, 18 Jan 2014 09:36:29 +0100 Organization: None References: Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7Bit X-Gmane-NNTP-Posting-Host: p5084a8d5.dip0.t-ipconnect.de User-Agent: KNode/4.7.3 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: 64 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1390034188 news.xs4all.nl 2936 [2001:888:2000:d::a6]:52964 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:64218 Piet van Oostrum wrote: > Hi, > > I am looking for an elegant way to write the following code as a list > comprehension: > > labels = [] > for then, name in mylist: > _, mn, dy, _, _, _, wd, _, _ = localtime(then) > labels.append(somefunc(mn, day, wd, name)) > > So mylist is a list of tuples, the first member of the tuple is a time > (as epoch offset) and I neeed to apply a function on some fields of the > localtime of it. > > I could define a auxiliary function like: > > def auxfunc(then, name): > _, mn, dy, _, _, _, wd, _, _ = localtime(then) > return somefunc(mn, day, wd, name) > > and then use > [auxfunc(then, name) for then, name in mylist] > > or even > [auxfunc(*tup) for tup in mylist] > > But defining the auxfunc takes away the elegance of a list comprehension. > I would like to integrate the unpacking of localtime() and calling > somefunc within the list comprehension, but I don't see a simple way to do > that. > > somefunc(mn, day, wd, name) for _, mn, dy, _, _, _, wd, _, _ in > [localtime(then)] (i.e. using a list comprehension on a one element list > to do the variable shuffling) works but I don't find that very elegant. > > labels = [somefunc(mn, day, wd, name) > for then, name in mylist > for _, mn, dy, _, _, _, wd, _, _ in [localtime(then)]] > > Python misses a 'where' or 'let'-like construction as in Haskell. > > Anybody has a more elegant solution? Options I can think of: You could do it in two steps... time_name_pairs = ((localtime(then), name) for then, name in mylist) labels = [somefunc(t.tm_mon, t.tm_mday, t.tm_wday, name) for t, name in time_name_pairs] ...or you could inline the helper function... mon_mday_wday = operator.attrgetter("tm_mon", "tm_day", "tm_wday") labels = [somefunc(*mon_mday_wday(localtime(then)), name=name) for then, name in mylist] -- but both seem less readable than the classical for-loop. What would a list-comp with `let` or `where` look like? Would it win the beauty contest against the loop?