File size: 83 Bytes
cc0703f
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12

x = 10

def func():
  print(x)

def func2():
  global x
  x = 20
  
func2()
func()