Noah, Calvin
Thanks so much!
Regards,
Emeka
On Wed, Dec 21, 2011 at 6:57 AM, Noah Hall wrote:
> On Wed, Dec 21, 2011 at 4:39 AM, Emeka wrote:
> >
> > Hello All,
>
> > v = []
> >
> > def add_to_list(plist):
> > u = plist.append(90)
> > return u
> >
> > add_to_list(v) # This function c
On Wed, Dec 21, 2011 at 4:39 AM, Emeka wrote:
>
> 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?
It's because add_to_list return
On Dec 20, 2011 11:41 PM, "Emeka" wrote:
>
>
> 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 p