function_local.py 121 B

123456789101112
  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)