How can I create or use a global variable in a function? If I create a global variable in one function, how can I use that global variable in another function? Do I need to store the global variable in a local variable of the function which needs its access? You can use a global variable within other functions by declaring it as global within each function that assigns a value to it: globvar = 0..