We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 47fdd22 commit 07096a7Copy full SHA for 07096a7
nested_stetment_and_scop/example.py
@@ -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
14
+ global x
15
16
+ return x
17
18
19
20
21
22
23
+x=50
24
+def fun():
25
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
35
36
37
38
39
40
41
42
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
54
55
56
0 commit comments