how to use local variable as global in python code example
Example 1: python access global variable
globvar = 0
def set_globvar_to_one():
global globvar
globvar = 1
def print_globvar():
print(globvar)
set_globvar_to_one()
print_globvar()
Example 2: python global variables
global var1
var1 = 'whatever'
Example 3: how to make variable global in python
global variable
variable = 'whatever'
Example 4: global variable python
a = 'This is global a'
def yourFunction():
global a
return a[0:2]
Example 5: python local variables
'''Local variables are those that are defined in a block '''
a = 1
def add():
b = 1
print(b)
add()
Example 6: how to declare global variable in python
global n
n = 'whatever'