Skip to content

Commit

Permalink
Basic
Browse files Browse the repository at this point in the history
  • Loading branch information
SanjanaPurbia authored Jul 17, 2021
1 parent 4b3284b commit ee1b9bf
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions global.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
y=10 #global variable
def value():
x=9
print(x)
print(y)

value()
print(y)

0 comments on commit ee1b9bf

Please sign in to comment.