Ask Your Question
1

Can a string be utilized to access a Python dataframe bearing a corresponding name?

asked 2022-12-20 11:00:00 +0000

bukephalos gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
3

answered 2022-01-19 17:00:00 +0000

huitzilopochtli gravatar image

No, a string cannot be directly utilized to access a Python dataframe bearing a corresponding name. However, you can use a dictionary to associate each dataframe with a unique name and then access it using that name as the key. For example, you can create a dictionary of dataframes as follows:

dataframes = {'df1': dataframe1, 'df2': dataframe2, 'df3': dataframe3}

Then, you can access the desired dataframe using its name as the key:

df_name = 'df2'
desired_dataframe = dataframes[df_name]
edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2022-12-20 11:00:00 +0000

Seen: 8 times

Last updated: Jan 19 '22