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)
我不知道我做错了什么,任何帮助将不胜感激。