variabel global python yang dapat diulangi

COUNT = 0

def increment():
    global COUNT
    COUNT = COUNT+1

increment()

print COUNT
Perfect Pollan