You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-02 16:44:46 +08:00
17 lines
233 B
Python
17 lines
233 B
Python
i = 1; j = 7
|
|
def a():
|
|
def b():
|
|
def c():
|
|
k = 34
|
|
global i
|
|
i = i+k
|
|
l = 42
|
|
c()
|
|
global j
|
|
j = j+l
|
|
b()
|
|
print i, j # should print 35, 49
|
|
|
|
a()
|
|
print i, j
|