Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #https://softuni.bg/trainings/4371/python-oop-february-2024#lesson-64960
- # https://softuni.bg/trainings/resources/video/95524/video-20-february-2024-ines-kenova-python-oop-february-2024/4371 - VIDEO ot 40 min
- x = "global"
- def outer():
- x = "local"
- def inner():
- nonlocal x
- x = "nonlocal"
- print("inner:", x)
- def change_global():
- global x
- x = "global: changed!"
- print("outer:", x)
- inner()
- print("outer:", x)
- change_global()
- print(x)
- outer()
- print(x)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement