From 27637d7c706abf558505c03dd250197b8f33913d Mon Sep 17 00:00:00 2001 From: Flowsnow Date: Sun, 11 Feb 2018 16:03:58 +0800 Subject: [PATCH] Translating by Flowsnow-20180208 Python Global, Local and Nonlocal variables (With Examples) --- ...hon Global, Local and Nonlocal variables (With Examples).md | 3 +++ 1 file changed, 3 insertions(+) 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.