a = 10 # global 변수
b = 20
def test(a, b):
print(a, b) # 이때 a,b는 local 변수
return # 여기서 local 변수는 사라진다.
test(30, 40)
print(a, b)
'📌 Python' 카테고리의 다른 글
Python - lambda 함수 (0) | 2021.01.19 |
---|---|
Python - variable length argument(가변길이 인자) (0) | 2021.01.19 |
Python - 기본 파라미터 (0) | 2021.01.19 |
python - ImportError: attempted relative import with no known parent package (0) | 2021.01.08 |
Python - decorator (0) | 2021.01.06 |