-3

我是 python 新手,这部分有问题。我有一个名为 Pet 的类和一个名为 Dogs 的类。我需要 Pets 来声明一个集合来保存要添加到列表、元组或字典中的各种狗,或者更容易。例如

pitbull=Dog()
shepard=Dog()
guard_dog=Dog()

animal=Pet()

我不知道python是否允许将对象存储在list中。在java中我可以简单地将它们存储在arrayList中。喜欢pet=arrayList<Dog>()。我四处搜索,不知道如何将 Dog 对象添加到 python 中的列表、元组或字典中。请帮助任何人

4

1 回答 1

1

正如Martijn Pieters所说,你应该看看python教程

例如使用列表

pitbull=Dog()
shepard=Dog()
guard_dog=Dog()

animal=Pet()

animals = [pitbull,shepard,guard_dog]
animals.append(animal)

#do what ever you want with the list
于 2013-01-15T17:40:03.070 回答