We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 140ed80 commit b6eadccCopy full SHA for b6eadcc
python-namespace/globals_func.py
@@ -1,5 +1,5 @@
1
globals()["message"] = "Welcome to Real Python!"
2
3
-print(message)
4
-globals()["message"] = "Hello, World!"
5
+# print(message)
+# globals()["message"] = "Hello, World!"
python-namespace/legb_3.py
@@ -2,7 +2,7 @@
def outer():
- x = "enclosing"
+ # x = "enclosing"
6
7
def inner():
8
x = "local"
python-namespace/legb_4.py
0 commit comments