python where to put global variables code example
Example: global variable python
#it is best not to use global variables in a function
#(pass it as an argument)
a = 'This is global a'
def yourFunction():
global a
return a[0:2]
#it is best not to use global variables in a function
#(pass it as an argument)
a = 'This is global a'
def yourFunction():
global a
return a[0:2]