Please explain this for me
Emeka
emekamicro at gmail.com
Tue Dec 20 23:39:43 EST 2011
Hello All,
v = []
def add_to_list(plist):
u = plist.append(90)
return u
add_to_list(v) # This function call returns nothing
Could someone explain why this function call will return nothing?
v = [90] # Object values are passed by reference
This one is clear to me
add_to_list([])
This one returns nothing, why?
Regards,
Emeka
--
*Satajanus Nig. Ltd
*
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/python-list/attachments/20111221/492b4c18/attachment-0001.html>
More information about the Python-list
mailing list