“Python Get Global Variable mit Namen” 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 Get Global Variable mit Namen

x = 1
y = globals().get('x')
z = globals().get('a')

x is y # True
z is None # True
True is not False

Ähnliche Antworten wie “Python Get Global Variable mit Namen”

Fragen ähnlich wie “Python Get Global Variable mit Namen”

Weitere verwandte Antworten zu “Python Get Global Variable mit Namen” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen