在Python项目中维护一组常量的好方法是什么?

问题描述 投票:0回答:1

是否具有包含以下内容的.py文件?

class Set1(Enum):
   A = 1
   B = 2

class Set2(Enum):
  C= "hi"
  D= "Hello"

或简单地

Set1 = {"A":1,"B":2}
Set2 = {"C"="hi","D"="Hello"}

请注意,这些常量将由项目中的不同模块使用。

python dictionary enums standards
1个回答
0
投票

通常,您在这样的文件中定义常量:

some_file.py

FOO = 0
BAR = "baz"

并且如果您需要使用它:

import some_file

print(some_file.FOO)
print(some_file.BAR)
© www.soinside.com 2019 - 2024. All rights reserved.