Classes

ast nomail at invalid.com
Fri Oct 31 05:05:03 EDT 2014


"Seymore4Head" <Seymore4Head at Hotmail.invalid> a écrit dans le message de 
news:51755at03r0bidjqh3qf0hhpvjr8756ill at 4ax.com...
> class pet:
>    def set_age(self,age):
>        self.age=age
>    def get_age(self):
>        return self.age
> pax=pet
> pax.set_age(4)
>
> Traceback (most recent call last):
>  File "C:\Functions\test.py", line 18, in <module>
>    pax.set_age(4)
> TypeError: set_age() missing 1 required positional argument: 'age'
>
> I am trying to pass 4 as the age.  Obviously I am doing it wrong.
>

Hi

I am a beginner too, but I find it strange that your
pet class has no __init__ method to construct
instances 




More information about the Python-list mailing list