Skip to content

Commit 07096a7

Browse files
committed
nested stetment scop exampel
1 parent 47fdd22 commit 07096a7

File tree

1 file changed

+56
-0
lines changed

1 file changed

+56
-0
lines changed

nested_stetment_and_scop/example.py

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
x=25 #globel
2+
def p():
3+
x=50 # local
4+
print(x)
5+
6+
print(x)
7+
8+
p()
9+
10+
11+
x = 100 #global
12+
13+
def p():
14+
global x
15+
x=50 # local
16+
return x
17+
18+
19+
print(x)
20+
21+
p()
22+
23+
x=50
24+
def fun():
25+
global x
26+
print(f"x is {x}")
27+
28+
#Local Reassigment!
29+
x=200
30+
print(f"just localy change x to {x}")
31+
32+
fun()
33+
34+
x=50
35+
def fun():
36+
print(f"x is {x}")
37+
38+
#Local Reassigment!
39+
x=200
40+
print(f"just localy change x to {x}")
41+
42+
fun()
43+
44+
name = "this is "
45+
46+
def new():
47+
#ENclossing
48+
name="summy"
49+
print(name)
50+
51+
def new1():
52+
name="gimmy"
53+
print(name)
54+
55+
56+

0 commit comments

Comments
 (0)