“Python edytuj zmienną globalną w funkcji” Kod odpowiedzi

Python edytuj zmienną globalną w funkcji

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 modyfikujący zmienną globalną od wewnątrz funkcji

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

add()
SAMER SAEID

Odpowiedzi podobne do “Python edytuj zmienną globalną w funkcji”

Pytania podobne do “Python edytuj zmienną globalną w funkcji”

Więcej pokrewnych odpowiedzi na “Python edytuj zmienną globalną w funkcji” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu