function_global.py 137 B

1234567891011121314
  1. x = 50
  2. def func():
  3. global x
  4. print('x is', x)
  5. x = 2
  6. print('Changed global x to', x)
  7. func()
  8. print('Value of x is', x)