File size: 102 Bytes
3797c8e
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
A = 5

def hah():
    global A
    = 10

if __name__ =='__main__':
    print(A)
    hah()
    print(A)