gpt4 book ai didi

python - 从python中的单独文件导入列表变量

转载 作者:行者123 更新时间:2023-11-28 21:16:04 24 4
gpt4 key购买 nike

脚本.py

list = ['one',
'two',
'three']
# python script here

我的列表变得很长(大约 400 行)...有没有办法将变量 list 放在一个单独的 py 文件中并导入它?

或者我应该有单独的文件并通过迭代创建一个列表吗?

list.txt

one
two
three

我怎样才能做到这一点?

最佳答案

是的!只需创建另一个 python 列表并将其导入主程序即可。

在变量.py中

mylist = ['this', 'that', 'theother']

在 main.py 中

from variables import mylist

关于python - 从python中的单独文件导入列表变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29267006/

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