“Python Access Global Variable” Code-Antworten

Python Access Global Variable

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
Tame Toad

Python erstellen eine globale Variable

x = "global"

def foo():
    print("x inside:", x)


foo()
print("x outside:", x)
SAMER SAEID

Ähnliche Antworten wie “Python Access Global Variable”

Fragen ähnlich wie “Python Access Global Variable”

Weitere verwandte Antworten zu “Python Access Global Variable” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen