Why this code is working?

Hussein B hubaghdadi at gmail.com
Wed Jan 14 04:54:11 EST 2009


Hey,
Why this code is working?

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

Thanks.




More information about the Python-list mailing list