Carson Wendy wrote:
> ok, i just started python and i'm stuck on this, could use some help
> :D 
> a='test'
> def f():
>      a=a+'gg'

Look for the definition of  'global'
And try this:
>>> a = 'test'
>>> def f()
        global a
        a = a + 'gg'
        print a
>>>f()


-- 
Senthil


Dish of the Day: Good evening, madame and gentlemen. I am the main dish
of the day. May I interest you in parts of my body? 
_______________________________________________
Tutor maillist  -  Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor

Reply via email to