개요
- Python locals()
- 현재 로컬 심볼 테이블 테이블을 딕셔너리 형태로 돌려줌
locals()
예시
a.py
def foo():
bar = 'I\'m sleeping'
print(locals())
foo()
$ python a.py
{'bar': "I'm sleeping"}
locals()
def foo():
bar = 'I\'m sleeping'
print(locals())
foo()
$ python a.py
{'bar': "I'm sleeping"}