amazinghaha commited on
Commit
3797c8e
·
1 Parent(s): 6ef2412

Upload try.py

Browse files
Files changed (1) hide show
  1. try.py +10 -0
try.py ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ A = 5
2
+
3
+ def hah():
4
+ global A
5
+ = 10
6
+
7
+ if __name__ =='__main__':
8
+ print(A)
9
+ hah()
10
+ print(A)