[ Python ] 파이썬 함수 argument 정보 가져오기
파이썬 내부에서 argument를 어떤 것을 넣는지 다 가져오고 싶을 때가 있다. 그래서 이러한 문제를 inspect 함수로 해결하는 것을 알 수 있었다. import inspect def a(a=5,b=5) : frame = inspect.currentframe() args, _, _, values = inspect.getargvalues(frame) del values["frame"] print(args , values) a(5,2) import inspect class Argument(object) : def __init__(self,name) : self.name= "go" def test(self, a=5,b=5, **kwargs) : frame = inspect.currentframe() ar..
2020.02.08