gpt4 book ai didi

python - 在python中连接变量名

转载 作者:行者123 更新时间:2023-12-04 14:25:44 27 4
gpt4 key购买 nike

我有一组表名

1. EOM
2.STMT
3.查找等

我想将这些表名与一些变量名相关联,例如

1.开始时间,
2.结束时间,
3. total_time 等

我想写这些变量名的方式类似于

1. start_time_EOM, end_time_EOM, total_time_EOM
2. start_time_STMT, end_time_STMT,total_time_STMT
3. start_time_LOOKUP,end_time_LOOKUP,total_time_LOOKUP

这可以在 python 中完成,如何完成?
(注意:我是 Python 新手,仍在努力学习)。

最佳答案

是的,字典是解决方案:

tables=["A","B","C"]
vars = ["var1","var2","var3"]
dict={}
for val in tables:
for val2 in vars:
dict[val2+"_"+val] = foo
dict[val2+"_"+val] = bar
dict[val2+"_"+val] = foobar
#and so

希望如果有帮助

关于python - 在python中连接变量名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44974936/

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