diff --git a/sources/tech/20180208 Python Global, Local and Nonlocal variables (With Examples).md b/sources/tech/20180208 Python Global, Local and Nonlocal variables (With Examples).md index eecfe35ae1..d57fbac146 100644 --- a/sources/tech/20180208 Python Global, Local and Nonlocal variables (With Examples).md +++ b/sources/tech/20180208 Python Global, Local and Nonlocal variables (With Examples).md @@ -1,5 +1,8 @@ +translating by Flowsnow + Python Global, Local and Nonlocal variables (With Examples) ====== + ### Global Variables In Python, a variable declared outside of the function or in global scope is known as global variable. This means, global variable can be accessed inside or outside of the function.