LearningPy/main.py

11 lines
99 B
Python
Raw Normal View History

2022-11-30 16:03:51 +00:00
#Global test
x = 0
print(x)
2022-11-30 16:03:51 +00:00
def myfunc():
global x
x = 1
print(x)
myfunc()