If I have a lots of dataframes which are called Df001
,Df002
,Df003
,...,Df100
.
How could I access a specific location in every dataframe.
For example, I want to assign:
Df001[1, 3] = a
Df002[2, 4] = b
...
(a,b are some values read from a file)
But I don't want to type this codes in details because there are many dataframes needed to be assigned.
Are there some methods that use string to select a dataframe and assign value?