関数名文字列などで関数をフェッチしたい。
class test(object):
def fetch_function():
print "Function is call"
#now i want to fetch function using string
"fetch_function()"
結果は次のようになります: 関数が呼び出されます
関数名文字列などで関数をフェッチしたい。
class test(object):
def fetch_function():
print "Function is call"
#now i want to fetch function using string
"fetch_function()"
結果は次のようになります: 関数が呼び出されます