Mastering Python: Day 4
python global variable
In Python, a global variable is a variable that is defined outside of a function and is accessible from within any function. Here's an example:
VerifyOpen In EditorEditCopy code1x = 5 # global variable
2
3def my_function():
4 ...
yogesheon.hashnode.dev3 min read