我有一个循环,该循环调用一个函数并遍历一串值以返回结果。我需要能够将每次迭代的结果分配给唯一变量以供以后使用。
testdf = ('06048WGU8','06048WGZ7','61745E4E8','61760QDS0')
for item in testdf:
df+str(item)=get_data(item,today)
结果为:df06048WGU8,df06048WGZ7 ...
但是,我收到此消息
File "<ipython-input-25-be32e4e0c793>", line 20
df+str(item)=get_data(item,today)
^
SyntaxError:无法分配给运算符