Re: Conjunction List

2008-06-01 Thread George Sakkis
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

2008-05-31 Thread ccy56781
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)