“Python Editar variável global na função” Respostas de código

Python Editar variável global na função

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 a variável global de dentro da função

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

add()
SAMER SAEID

Respostas semelhantes a “Python Editar variável global na função”

Perguntas semelhantes a “Python Editar variável global na função”

Mais respostas relacionadas para “Python Editar variável global na função” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código