String 값으로 함수를 실행시키고자 할 때 쓰는 방법
locals()[String 변수]()
locals()
Update and return a dictionary representing the current local symbol table. Free variables are returned by locals()
when it is called in function blocks, but not in class blocks.
공식문서에 따르면 local 변수에 대해서 dict type으로 반환한다고 한다.
테스트 해보면 다음과 같다.
a = 1
b = [1,2,3]
def test():
print("Go !")
print("locals():", locals())
print()
print("locals()[test]:", locals()["test"])
print()
locals()["test"]()
locals(): {'__name__': '__main__', '__doc__': None, '__package__': None, '__loader__': <class '_frozen_importlib.BuiltinImporter'>, '__spec__': None, '__annotations__': {}, '__builtins__': <module 'builtins' (built-in)>, 'a': 1, 'b': [1, 2, 3], 'test': <function test at 0x7f53cb813b00>}
locals()[test]: <function test at 0x7f53cb813b00>
Go !
선언된 함수에 대한 참조 어드레스도 볼 수 있다.
'컴퓨터 공학' 카테고리의 다른 글
👉 [네트워크] 나는 왜 SocketIO 대신 Websocket 서버를 구축하였는가? (0) | 2021.01.12 |
---|---|
👉 [네트워크] HTTP 는 소켓 통신이에욧 !!! (4) | 2020.09.24 |
👉 [Linux] unsupported class file major version 55 해결 방법 (0) | 2019.11.03 |
👉 [Spark] java.net.BindException : Service 'sparkDriver' failed after 16 retries 오류 해결 방법 (0) | 2019.11.01 |
👉 [Github] 깃허브 repository 이름 변경 (0) | 2019.10.28 |