Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #35166
| References | <BLU168-W121B52F2829276D9EC909658F300@phx.gbl> <CAHzaPEPXMLSqhqyzSj96xFcedjr=HeoPv+d_xGrOwXAqLe-PFQ@mail.gmail.com> |
|---|---|
| From | Chris Kaynor <ckaynor@zindagigames.com> |
| Date | 2012-12-19 09:11 -0800 |
| Subject | Re: calculation on lists |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.1078.1355962816.29569.python-list@python.org> (permalink) |
[Multipart message — attachments visible in raw view] - view raw
On Wed, Dec 19, 2012 at 4:38 AM, Vlastimil Brom <vlastimil.brom@gmail.com>wrote: > 2012/12/19 loïc Lauréote <laureote-loic@hotmail.fr>: > hi, > I > have a question, > is there a tool to calculate on list ? > > something like : > > >a= [1,1,1,1] > >b = [5,9,8,4] > >c = a+b*a > >print c > >[6,10,9,5] > > Thx > > ====== > > Hi, > for such simpler cases, you may try list comprehensions and probably > the zip(...) function > > >>> [a+b*a for a,b in zip([1,1,1,1], [5,9,8,4])] > [6, 10, 9, 5] > >>> > You can also use map (Python 2.6): map(lambda a,b: a+b*a, [1,1,1,1], [5,9,8,4]) Note that the lambda can be replaced by any callable which takes 2 arguments.
Back to comp.lang.python | Previous | Next | Find similar | Unroll thread
Re: calculation on lists Chris Kaynor <ckaynor@zindagigames.com> - 2012-12-19 09:11 -0800
csiph-web