Re: [BangPypers] [JOB] Knowlarity is looking for a fullstack developers

2013-12-05 Thread Rahul Rai
Hey Aditya, This simply means 'enough mastery/experience' over the listed technology areas to architect end to end systems while being fully aware of how a certain decision made in one layer affects things on the other...etc. This is not really a fancy term IMHO, have worked with many such people

Re: [BangPypers] Resolving dependancies

2013-12-05 Thread Vaidhy
I think you need a better class structure. A class should not be used solely to impose an interface. On Dec 5, 2013 4:52 PM, "SHASHANKA SONA" wrote: > Hi , > > I have a situation where i have 3(ex: Class1, Class2, Class3) classes > inheriting from a base class(ex: Base_class). Each of 3 cl

Re: [BangPypers] list question

2013-12-05 Thread Vineet Naik
Another way: from collections import defaultdict x = [['cat', 'NM123', 12], ['cat', 'NM234', 12], ['dog', 'NM56', 65]] y = [['cat', 'NM123, NM234', 12], ['dog', 'NM56', 65]] def f(acc, x): acc[(x[0], x[2])] += [x[1]] return acc assert y == [[k[0], ', '.join(v), k[1]] for k, v in reduce(

[BangPypers] Resolving dependancies

2013-12-05 Thread SHASHANKA SONA
Hi , I have a situation where i have 3(ex: Class1, Class2, Class3) classes inheriting from a base class(ex: Base_class). Each of 3 classes has run_check() method checking something. Check in Class1.run_check() should execute if Class3.run_check() is successful. Check in Class2.run_check() sh

Re: [BangPypers] list question

2013-12-05 Thread Nitin Kumar
long but this too works :) >>> p=[] >>> x=[['cat','NM123',12],['cat','NM234',12], ['dog', 'NM56',65]] >>> import copy >>> def fn(a,b): if len(a)==3 and a[0]==b[0] and a[-1]==b[-1] and a[1]!=b[1]: a.insert(-1,b[1]) p.append(a) else: p.append(b) return p >>> reduce(fn, copy.deepcopy(x)) [['cat', 'N

Re: [BangPypers] list question

2013-12-05 Thread Dhananjay Nene
from itertools import groupby x = [['cat','NM123',12],['cat','NM234',12], ['dog', 'NM56',65]] y = [['cat','NM123, NM234', 12], ['dog', 'NM56', 65]] def grouper(t) : return (t[0],t[2]) assert y == list(list((keys[0],", ".join(val[1] for val in vals),keys[1])) for keys, vals in g

Re: [BangPypers] list question

2013-12-05 Thread L Radhakrishna Rao
One thing is here: The x[0] and x[1] are in union with each other. this needs to be solved by set operations on list of lists. On Thu, Dec 5, 2013 at 1:55 PM, Vikram K wrote: > Any suggestions on what i have to do to go from x to y? > > >>> x = [['cat','NM123',12],['cat','NM234',12], ['dog'

[BangPypers] list question

2013-12-05 Thread Vikram K
Any suggestions on what i have to do to go from x to y? >>> x = [['cat','NM123',12],['cat','NM234',12], ['dog', 'NM56',65]] >>> x [['cat', 'NM123', 12], ['cat', 'NM234', 12], ['dog', 'NM56', 65]] >>> y = [] >>> y = [['cat','NM123, NM234', 12], ['dog', 'NM56', 65]] >>> Regards Vik