Python, bir sınıfta bir yöntem çalıştırmak çalışıyorum ve bir hata alıyorum:
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)
Kodu: (swineflu.py)
class fibo:
a=0
b=0
def f(self,a=0):
print fibo.b+a
b=a;
return self(a+1)
Komut dosyası main.py
import swineflu
f = swineflu
fibo = f.fibo
fibo.f() #TypeError is thrown here
Bu hata ne anlama geliyor? Bu hataya ne sebep oluyor?
fibo = f.fibo()
Sınıfı köşeli parantez ile başlatmanız gerekir.
fibo().f()