SMALL
Local variable vs global variable
tmp = 100
def my_func(x):
tmp += x
return tmp
print(my_func(100))
메모리 구조상 error 표출
tmp = 100
def my_func(x):
global tmp
tmp += x
return tmp
print(my_func(100))
print(tmp)
200
200
LIST
'Python' 카테고리의 다른 글
0701 python 의 내장함수 (0) | 2021.07.01 |
---|---|
0701 mutable(가변의), immutable(불변의) (0) | 2021.07.01 |
0701 1급 함수 first-classes function (0) | 2021.07.01 |
0701 python의 함수적 특징 (0) | 2021.07.01 |
0701 함수(function) (0) | 2021.07.01 |
댓글