mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-27 04:22:42 +07:00
12 lines
133 B
Python
12 lines
133 B
Python
def outer1():
|
|
s = 1
|
|
|
|
def inner():
|
|
global s
|
|
s = "aba"
|
|
|
|
inner()
|
|
|
|
def outer2():
|
|
print(s)
|
|
# <ref> |