Skip to content

Commit 9fa0b77

Browse files
committed
scope_variable.py
1 parent 057df15 commit 9fa0b77

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

scope_variable.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)