Trong Python, tôi đang cố chạy một phương thức trong một lớp và tôi gặp lỗi:
Traceback (most recent call last):
File "C:\Users\domenico\Desktop\py\main.py", line 8, in <module>
fibo.f()
TypeError: unbound method f() must be called with fibo instance
as first argument (got nothing instead)
Mã: (swineflu.py)
class fibo:
a=0
b=0
def f(self,a=0):
print fibo.b+a
b=a;
return self(a+1)
Tập lệnh chính
import swineflu
f = swineflu
fibo = f.fibo
fibo.f() #TypeError is thrown here
Lỗi này nghĩa là gì? Điều gì gây ra lỗi này?
fibo = f.fibo()
Cần phát sinh lớp học với dấu ngoặc.
fibo().f()