diff --git a/global var b/global var new file mode 100644 index 0000000..5992e47 --- /dev/null +++ b/global var @@ -0,0 +1,10 @@ +def f(): + global s + print(s) + s = "Look for Python Section" + print(s) + +# Global Scope +s = "Python is great!" +f() +print(s)