global
global을 사용하면 함수 안에서도 전역변수의 값을 수정할 수 있다.
num_out = 10
def printNumbers():
global num_out
num_out = 20
print(f'num_out: {num_out}')
printNumbers()
print(f'num_out: {num_out}')
## num_out: 20
## num_out: 20
'제로베이스 > Python' 카테고리의 다른 글
6. 객체 지향 프로그래밍 (0) | 2022.10.09 |
---|---|
5. site-packages (0) | 2022.10.09 |
4. __name__ 전역변수 (0) | 2022.10.08 |
3. import, from ~ import (0) | 2022.10.08 |
1. 인수와 매개변수 (0) | 2022.10.08 |