So I have a program that at its core is this
def first():
global myvar
myvar = "thing"
def second():
print myvar
but when it runs nothing happens, I honestly dont know what else to do
So I have a program that at its core is this
def first():
global myvar
myvar = "thing"
def second():
print myvar
but when it runs nothing happens, I honestly dont know what else to do