파이썬에서 특정 함수의 호출자에 대한 정보를 얻고 싶습니다. 예 :파이썬에서 함수 호출자 정보 가져 오기
class SomeClass():
def __init__(self, x):
self.x = x
def caller(self):
return special_func(self.x)
def special_func(x):
print "My caller is the 'caller' function in an 'SomeClass' class."
파이썬에서는 가능합니까?
을'그것은 주셔서 감사합니다 Python.' – pradyunsg