Re: Conjunction List
On May 31, 8:01 pm, [EMAIL PROTECTED] wrote: > http://codepad.org/MV3k10AU > > I want to write like next one. > > def conjunction(number=a[1],name=b[1],size=c[1]): > flag = a[0]==b[0]==c[0] > if flag: > for e in zip(number,name,size): > print e > > conjunction(a,b,c) > > -
Conjunction List
http://codepad.org/MV3k10AU I want to write like next one. def conjunction(number=a[1],name=b[1],size=c[1]): flag = a[0]==b[0]==c[0] if flag: for e in zip(number,name,size): print e conjunction(a,b,c)