python什么时候用eval,python – 为什么使用’eval’是一种不好的...
是的,使用eval是一种不好的做法.仅举几个原因:>几乎总有一种更好的方法>非常危险和不安全>使调试变得困难>慢在您的情况下,您可以使用setattr:class Song:"""The class to store the details of each song"""attsToStore=('Name', 'Artist', 'Album', 'Genre', 'Lo...