Quick return question

joel8bit jwickard**nospam** at litriusgroup.com
Tue Apr 2 10:13:00 EST 2002


Hello all:
given the function:

def adder(**args):
    for key in args.keys():
        print args[key]

print adder(fName="sam", lName="scott", mName="wayne")

I get:

sam
scott
wayne
None

Why am I getting None as well, because there's no return value for the
function?





More information about the Python-list mailing list