“Python Edit variabel global dalam fungsi” Kode Jawaban

Python Edit variabel global dalam fungsi

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 memodifikasi variabel global dari dalam fungsi

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

add()
SAMER SAEID

Jawaban yang mirip dengan “Python Edit variabel global dalam fungsi”

Pertanyaan yang mirip dengan “Python Edit variabel global dalam fungsi”

Lebih banyak jawaban terkait untuk “Python Edit variabel global dalam fungsi” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya