これはおそらく非常に単純ですが、変数名にも対応する文字列のリストがあります。
listname = ['name1', 'name2," ... ]
name1 = "somestring"
name2 = "some other string"
私ができるようにしたいのは、次のようなものです。
for variable in listname:
[perform some operation on the string associated with the variables
named in listname, i.e. "somestring" and then "some other string," etc.]
文字列listname
を変数として強制的に評価する簡単な方法はありますか?