Kata kunci global Python

c = 1 # global variable

def add():
    print(c)

add()
SAMER SAEID