-
[Python] 지역변수들이 뭐가 있나 확인해보자 locals()Python 2021. 11. 25. 19:04
def func(): one = 1 two = 2 print(locals()) func() -------------------------- => {'one': 1, 'two': 2}
'Python' 카테고리의 다른 글
[Python] .join() method 이용해서 간지나게 list 뜯어보기 (0) 2021.12.04 [Python] 함수의 arguments에 함수를 던져보자 (0) 2021.11.25 [Python] text를 index해보자 module : re (0) 2021.11.24 [Python] with문에 대해 알아보자 (실행과 종료) (0) 2021.11.24 [Python] 예외 처리를 해보자 try, except, else, finally (0) 2021.11.24