Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
目前我正在编程使用列表的东西。这些列表非常大,我想知道是否可以将它们放在单独的 python 文件中。然后导入它们。
例如
List1 = [] List1.append("Blah") List1.append("Blah1") List1.append("Blah2") List1.append("Blah3")
我想将该列表放在一个单独的文件中,然后将其导入,以便可以在我的主文件中使用 List1。
我该怎么做呢?
您可以在同一目录中粘贴另一个 python 文件,然后您可以导入它。
所以你会有两个文件:
设置.py:
主要.py:
import settings print settings.List1
请注意,在语法上您也可以这样做:
from settings import List1 print List1
但通常不建议这样做...