Last active
March 1, 2016 02:56
-
-
Save shouhei/c8216b54aa3c4e64d5f5 to your computer and use it in GitHub Desktop.
python でメソッドがあるかないかを探すやーつ
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
target = 'hoge' | |
print filter(lambda n: n.find('method_name')>1, dir(target)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment