On 1/20/07, Jm lists <[EMAIL PROTECTED]> wrote:

hello members,

See my script piece below:

def testB(shift,**argv):
    print "first argument is %s" %shift
    print "all other arguments are:",argv

testB('mails','Jen','[EMAIL PROTECTED]','Joe','[EMAIL PROTECTED]')

It can't work at all.please help tell me the reasons.thanks.


It works for me, check this one :

def argtst(x, **y):
...     print "first arument is %s" % x
...     print "other arguments are", y
...
argtst(x=10,a=1,b=2,c=3)
first arument is 10
other arguments are {'a': 1, 'c': 3, 'b': 2}


(!) : Do not use the name 'argv' for the second argument.

--
With Regards,

TechnoFreak
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to