Hey,
Why this code is working?

>>> def f1( ):
...      x = 88
...      f2(x)
...
>>> def f2(x):
...      print x
...
>>> f1( )
88

Thanks.

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

Reply via email to