将常量从外部文件导入python

时间:2019-01-27 06:27:15

标签: python pylint

我想从外部文件导入一个常量。我在一个目录中有两个文件。 constants.py个文件:

SOME_CONSTANT = 'something'

并将其导入settings.py

import constants

someVariable = constants.SOME_CONSTANT

但是pylint写下Module 'constants' has no 'SOME_CONSTANT' member

1 个答案:

答案 0 :(得分:0)

不能真正说出如何制作常量,但是理想情况下,您希望将它们存储在类中。

#Constants.Py
class Province:
    CITY = 'Toronto'

#Settings.Py
from Constants import Province
someVariable = Province.CITY
>>> 'Toronto'