global variable in python that can be used in any function code example
Example 1: python global variables
global var1
var1 = 'whatever'
Example 2: global variable python
a = 0
def testFor():
global a
if(a == 0):
#run code
global var1
var1 = 'whatever'
a = 0
def testFor():
global a
if(a == 0):
#run code