“Python Editar variable global en función” Código de respuesta

Python Editar variable global en función

globalvar = "flower"

def editglobalvar():
	global globalvar # accesses the "globalvar" variable, so when we change it
    # it won't assign the new value to a local variable,
    # not changing the value of the global variable
    
    globalvar = "good" # assigning new value
    
print(globalvar) # outputs "flower"
# if we didnt use the "global" keyword in the function, it would print out 
# "flower"
    
dex!?

Python modificando la variable global desde el interior de la función

c = 1 # global variable
    
def add():
    c = c + 2 # increment c by 2
    print(c)

add()
SAMER SAEID

Respuestas similares a “Python Editar variable global en función”

Preguntas similares a “Python Editar variable global en función”

Más respuestas relacionadas con “Python Editar variable global en función” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código