function_local.py 116 B

12345678910
  1. x = 50
  2. def func(x):
  3. print 'x is', x
  4. x = 2
  5. print 'Changed local x to', x
  6. func(x)
  7. print 'x is still', x