Quick actions

cmd+k|ctrl+k

Navigation

Languages

Scoping-1

Snippet info

Language

Python

Visibility

public

Author

petersnpan2047

Created

2026-05-04T04:15:12.929747Z

Updated

2026-05-04T08:11:39.459431Z

x = 1
def a():
    global x
    #print(x+1)   # global x
    x = x + 1
a()
print(x)
INFO