参考这几篇帖子:
https://stackoverflow.com/questions/11553721/using-a-string-variable-as-a-variable-name?answertab=active#tab-top
https://stackoverflow.com/questions/1373164/how-do-i-create-a-variable-number-of-variables
https://stackoverflow.com/questions/19122345/to-convert-string-to-variable-name
https://late.am/post/2012/04/30/the-exec-statement-and-a-python-mystery.html
和自己尝试,得出了以下几个方法时可用的。我主要是用了exec的方法,因为只是一个小脚本,而不是在类里面设置,我想在类里面,可以使用setattr的方法进行。
由于python 2 和 3的exec是不同的,所以实现的方法也略有差别。
时间: 2024-10-05 13:44:21