gpt4 book ai didi

python - 如何使用python将列表中的数据帧名称更改为字符串?

转载 作者:行者123 更新时间:2023-12-04 17:18:54 25 4
gpt4 key购买 nike

如何使用python将列表中的数据框名称更改为字符串?

list = [a,b,c,d]
# each element in the list is a dataframe
# I wanna change this list into
["a","b","c","d"]

最佳答案

你可以使用这个:

def get_df_name(df):
return [x for x in globals() if globals()[x] is df][0]
l = [a,b,c]

l = list(map(get_df_name,l))

关于python - 如何使用python将列表中的数据帧名称更改为字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67371904/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com