Why is this not working? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

Why is this not working?

I tried to put petlist[0] inside the owner object but failed, https://code.sololearn.com/c1PBlh8mYYRg/?ref=app

26th Mar 2022, 5:13 PM
Lenoname
22 Answers
+ 3
#Like this : Lenoname ownerlist = [] petlist = [] class hamster : def __init__ (self, typeofpet, name, gender, age) : self.typeofpet = typeofpet self.name = name self.gender= gender self.age = age def __str__(self) : return f" {self.typeofpet}, {self.name}, {self.gender}, {self.age}" class owner : def __init__ (self, name, lastname, pets) : self.name = name self.lastname = lastname self.pets = pets def __str__(self) : return f"{self.name}, {self.lastname},{self.pets}" pet1 = hamster('hamster', 'pell', 'male', 2) petlist.append(pet1) owner1 = owner('p1', 'son', petlist[0]) ownerlist.append(owner1) for a in ownerlist: print(a)
26th Mar 2022, 7:23 PM
Jayakrishna 🇮🇳
+ 4
__str__ should return a str not print a str So you can just write print(a) in your for loop. And you give onwer1 1 pet not the complete list. But in your onwer class you act with your for loop like that you expect a list.
26th Mar 2022, 6:32 PM
Stefanoo
Stefanoo - avatar
+ 2
Depends on what you want. If you want use petlist[0] you could change your owner class. Or you could write something like this. [petlist[0]] so you have a list.
26th Mar 2022, 7:09 PM
Stefanoo
Stefanoo - avatar
+ 2
Lenoname , sorry, why didn't you create a superclass from which to derive the subclasses of each animal (hamster, cat etc.)? I don't say you are wrong or there is something wrong in your code... Just to be simpler...
27th Mar 2022, 4:43 PM
Raffaele Bisogno
Raffaele Bisogno - avatar
26th Mar 2022, 7:40 PM
Lenoname
0
Stefanoo what should i do instead?
26th Mar 2022, 7:03 PM
Lenoname
0
Stefanoo semi worked now i get p1 son [<__main__.hamster…..
26th Mar 2022, 7:39 PM
Lenoname
0
FF9900 Jayakrishna🇮🇳 Is it possible to give owner1 another pet? I dont mean to replace it, i mean give him one more pet. In that case how?
26th Mar 2022, 8:18 PM
Lenoname
0
ownerlist[0].append(petlist[1]) Or owner1.append(petlist[1]) will not work
26th Mar 2022, 8:23 PM
Lenoname
0
FF9900 its not working,plz check the code again
26th Mar 2022, 10:38 PM
Lenoname
0
FF9900 i did the same check line 63 in the original program, didnt work
26th Mar 2022, 10:49 PM
Lenoname
0
The methods at 38
26th Mar 2022, 11:06 PM
Lenoname
0
FF9900 yeah i did
26th Mar 2022, 11:26 PM
Lenoname
0
On replit though not here, thats why u still see print
26th Mar 2022, 11:27 PM
Lenoname
0
Attribute error Hamster object has no attribute ”append”
26th Mar 2022, 11:29 PM
Lenoname
0
FF9900 im on replit like i said
26th Mar 2022, 11:29 PM
Lenoname
0
FF9900 Ok updated here also
26th Mar 2022, 11:53 PM
Lenoname
0
FF9900 awesome, if i could only print them out in more orderly fashion that would be even better, alternatively have the pets inside [ ] or anything similar
27th Mar 2022, 12:15 AM
Lenoname
0
FF9900 hehe ok
27th Mar 2022, 1:13 AM
Lenoname
0
Raffaele Bisogno what good would it do? Would it make things less complicated?
27th Mar 2022, 11:43 PM
Lenoname