“Python Get Global Variable por su nombre” Código de respuesta

Variable global de Python Access Global

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 por su nombre

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

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

Respuestas similares a “Python Get Global Variable por su nombre”

Preguntas similares a “Python Get Global Variable por su nombre”

Más respuestas relacionadas con “Python Get Global Variable por su nombre” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código