13
Pythonのクラスメソッドの違い:バインド、非バインド、静的
次のクラスメソッドの違いは何ですか? 1つは静的で、もう1つは静的ではありませんか? class Test(object): def method_one(self): print "Called method_one" def method_two(): print "Called method_two" a_test = Test() a_test.method_one() a_test.method_two()
242
python