最佳答案
我使用下面的类轻松地存储我的歌曲的数据。
class Song:
"""The class to store the details of each song"""
attsToStore=('Name', 'Artist', 'Album', 'Genre', 'Location')
def __init__(self):
for att in self.attsToStore:
exec 'self.%s=None'%(att.lower()) in locals()
def setDetail(self, key, val):
if key in self.attsToStore:
exec 'self.%s=val'%(key.lower()) in locals()
我觉得这比编写 if/else
块可扩展得多。但是,我听说 eval
是不安全的。是吗?有什么风险?如何解决类中的潜在问题(动态设置 self
的属性)而不引起这种风险?