Skip to content
Snippets Groups Projects
Commit bf3986f9 authored by KimTaeeun's avatar KimTaeeun
Browse files

Upload New File

parent 1b11c813
No related branches found
No related tags found
No related merge requests found
a = 100
def local_test():
a=200
print(a)
print(a)
local_test()
print(a)
print("==========")
def global_test():
global a
a=200
print(a)
print(a)
global_test()
print(a)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment