So I have a list of Dataframe like :
dfs = [peru,euro,usa] <---all the elements are dataframe
I want to get the name of the each df
as a string. Like:
for i in dfs:
print(str(i))
#Expected Output:
'peru'
'euro'
'usa'
But I am getting the entire dataframe contents for peru
,eur
and usa
as string.
Any clue?