复制代码 代码如下:
def ReadOnlyObject(**args):
dictBI = {}
args_n = []
for name, val in args.items():
dictBI[name] = val
args_n.append(name)
dictBI['__slots__'] = args_n
return type('ReadOnlyObject', (object,), dictBI)()
最后
以上就是美满酒窝最近收集整理的关于python创建只读属性对象的方法(ReadOnlyObject)的全部内容,更多相关python创建只读属性对象内容请搜索靠谱客的其他文章。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复