How-to import constants in many files

2019-06-21 14:10发布

I have a package containing many modules. Each module uses constants that I have defined independently in each file. However, all these constants have to be constistent with each other. So I try to define them in a single file and import it in each file. When I run it I have errors for constants not found.

Is their a clean way to have a single file imported by many others and containing constants ?

Thanks for your help

1条回答
乱世女痞
2楼-- · 2019-06-21 14:56

You can declare all your constants in one file, say constants.py and then import them into others. Here is an example:

# constants.py
FOO = 'foo'
PI = 3.14

# main.py
import constants
print constants.PI
查看更多
登录 后发表回答