rlzz
0
Q:

global python

a = 'this is a global variable'
def yourFunction(arg):
    #you need to declare a global variable, otherwise an error
    global a
    return a.split(' ')
    
5
global variable
variable = 'whatever'
10
global var1
var1 = 'whatever'
21
a = 0

def testFor():
  global a 
  if(a == 0):
    	#run code
3
globvar = 0

def set_globvar_to_one():
    global globvar    # Needed to modify global copy of globvar
    globvar = 1

def print_globvar():
    print(globvar)     # No need for global declaration to read value of globvar

set_globvar_to_one()
print_globvar()       # Prints 1
4
global n
n = 'whatever'
7
"allows you to modify a variable outside its class or function"
1
x = 5

def foo():
    global x = 10
    print("local x:", x)


foo()
print("global x:", x)
0
globals 1, 2, 3
0

New to Communities?

Join the community