class MyClass(object):
def f(self):
return 'hello world'
私がここや他のウェブサイトで読んでいるすべてのものは、このコードを使用すると、実行MyClass.f()
すると元に戻るはずですhello world
が、代わりに取得し続けます
Traceback (most recent call last):
File "C:\Users\Calvin\Desktop\CS_Semester_Project\testing.py", line 5, in <module>
MyClass.f()
TypeError: unbound method f() must be called with MyClass instance as first argument (got nothing instead)
何が間違っているのかわかりません。助けていただければ幸いです。