我正在处理一个有限的“对象”列表,我将在我的小脚本中使用它们:
books = [
{'name': 'Book1': 'id', '123', 'text', '.....'},
{'name': 'Book2': 'id', '123', 'text', '.....'},
{'name': 'Book3': 'id', '123', 'text', '.....'},
]
为这种类型的书创建一个类是否有意义,或者它的方式是否合适?
创建一个类的问题是会有更多的样板。