Python常量工具类

1.定义常量类constant.py

# -*- coding: utf-8 -*
"""常量工具类

author: Jill

usage:
    from constant import _Const
    const = _Const()
    const.PI = 3.14
"""


class _Const:
    class ConstError(TypeError):
        pass

    class ConstCaseError(ConstError):
        pass

    def __setattr__(self, name, value):
        if name in self.__dict__:
            raise self.ConstError("Can't change const(%s) value" % name)
        if not name.isupper():
            raise self.ConstCaseError("Const name %s is not all uppercase" % name)

        self.__dict__[name] = value

    def __getitem__(self, key):
        if key in self.__dict__:
            return self.__dict__[key]
        else:
            raise self.ConstError("Can't return const %s, No Existing Key!" % key)

    def __delattr__(self, name):
        if name in self.__dict__:
            raise self.ConstError("Can't unbind const(%s)" % name)
        raise NameError(name)

 

2.将常量放在一个模块中common_constant.py

# -*- coding: utf-8 -*
"""常用常量定义

author: Jill

usage:
    from common_constant import const
    print(const.ROOT_PATH)
"""
from common.constant import _Const


const = _Const()

const.PI = 3.14

if __name__ == "__main__":
    print(const.PI)
    print(const['PI'])

 

3.在其他模块里使用test.py

from common_constant import const
    

print(const.ROOT_PATH)

 

转载于:https://www.cnblogs.com/goingforward/p/9883789.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值