Global variables in Python
- by rejinacm
A global variable created in one function cannot be used in another function directly.
Instead I need to store the global variable in a local variable of the function which needs its access. Am I correct? Why is it so?