We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 057df15 commit 9fa0b77Copy full SHA for 9fa0b77
scope_variable.py
@@ -0,0 +1,8 @@
1
+a=10
2
+def display():
3
+ # a=15
4
+ def show():
5
+ print(a)
6
+ show()
7
+display()
8
+# print(a)
0 commit comments