From 25e194aa0fe8cb82ca8f68c14993d31bf55bf034 Mon Sep 17 00:00:00 2001 From: "Stanislav (Stanley) Modrak" <44023416+smith558@users.noreply.github.com> Date: Wed, 26 Oct 2022 19:30:44 +0100 Subject: Update python.html.markdown --- python.html.markdown | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/python.html.markdown b/python.html.markdown index 22827963..687529b5 100644 --- a/python.html.markdown +++ b/python.html.markdown @@ -613,15 +613,17 @@ y = 2 x, y = swap(x, y) # => x = 2, y = 1 # (x, y) = swap(x,y) # Again parenthesis have been excluded but can be included. -# Function Scope +# global scope x = 5 def set_x(num): - # Local var x not the same as global variable x + # local scope begins here + # local var x not the same as global var x x = num # => 43 print(x) # => 43 def set_global_x(num): + # global indicates that particular var lives in the global scope global x print(x) # => 5 x = num # global var x is now set to 6 -- cgit v1.2.3