I know this a basic question but I am trying to call data from the database and define each of these dataframes as different variables.
This is what i have tried
lst=['A','B','C']
for i in range(len(lst)):
globals()[lst[i]]=***SQL query to import dataframes***
This is what I am looking for:
print(A)
*** Some Dataframe ***
Any help would be appreciated