yeq6x commited on
Commit
500e225
1 Parent(s): c8a56a1

Delete a.py

Browse files
Files changed (1) hide show
  1. a.py +0 -12
a.py DELETED
@@ -1,12 +0,0 @@
1
-
2
- x = 10
3
-
4
- def func():
5
- print(x)
6
-
7
- def func2():
8
- global x
9
- x = 20
10
-
11
- func2()
12
- func()