Advertisement
Guest User

Kavo

a guest
Jan 18th, 2020
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.21 KB | None | 0 0
  1. def func_outer():
  2.     x = 2
  3.     print('x равно',x)
  4.  
  5.     def func_inner():
  6.         global x
  7.         x = 5
  8.  
  9.     func_inner()
  10.     print('Локальное x сменилось на', x)
  11.  
  12.  
  13.  
  14. func_outer()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement