Re: [BangPypers] July meetup

2010-07-28 Thread Habibullah Pagarkar
Hello folks, Slight change of plans. The builders at our Domlur office want to perform some electrical maintenance work this weekend. I hope meeting at the Koramangala office instead at the same time wouldn't be too inconvenient. The address: ThoughtWorks Technologies (India) Pvt Ltd. view map

Re: [BangPypers] python speed comparison

2010-07-28 Thread Gopalakrishnan Subramani
IronPython (on .NET) and Jython (on Java) capable to use the multi core processors in your PC and they works faster than the CPython. Beware that not all the python packages shall be working with IronPython or Jython. Regards, Krish, http://www.stacked.in ___

Re: [BangPypers] partial flattening of list

2010-07-28 Thread Anand Balachandran Pillai
On Wed, Jul 28, 2010 at 12:49 AM, Jeffrey Jose wrote: > On Tue, Jul 27, 2010 at 4:15 PM, Vikram wrote: > > > > > Hi Anand,vijay, and others, > > we have python 2.4.3 at our workplace and defaultdict is not present in > the > > collections module in this python version. > > > > >>> dir(collections

Re: [BangPypers] nested list help

2010-07-28 Thread Jeffrey Jose
On Wed, Jul 28, 2010 at 1:01 PM, Anand Balachandran Pillai < abpil...@gmail.com> wrote: > On Tue, Jul 27, 2010 at 7:03 PM, Vikram K wrote: > > > Suppose i have this nested list: > > > > >>> x > > [['NM100', 3, 4, 5, 6, 7], ['NM100', 10, 11, 12, 13], ['NM200', 15, 16, > > 17]] > > >>> for i in x:

Re: [BangPypers] July meetup

2010-07-28 Thread vijay
missed  Address ThoughtWorks Technologies (India) Pvt Ltd. (map view) 2nd Floor, Tower C, Corporate Block, Diamond District Airport Road Bangalore - 560 008, India t: +91 80 4064 9570 f: +91 80 2508 9584 regards vijay --- On Wed, 28/7/10, vijay wrote: From

Re: [BangPypers] nested list help

2010-07-28 Thread Anand Balachandran Pillai
On Tue, Jul 27, 2010 at 7:03 PM, Vikram K wrote: > Suppose i have this nested list: > > >>> x > [['NM100', 3, 4, 5, 6, 7], ['NM100', 10, 11, 12, 13], ['NM200', 15, 16, > 17]] > >>> for i in x: > ... print i > ... > ['NM100', 3, 4, 5, 6, 7] > ['NM100', 10, 11, 12, 13] > ['NM200', 15, 16, 17] > >