标签:class get set warnings property 模块 mes reload AC
warnings.filterwarnings(action,category=Warning, ..) 用于过滤警告
warnings.warn(message, category=None) 用于发出警告
iter(obj) 从可迭代对象创建一个迭代器
next(it) 让迭代器前进一步并返回下一个元素
property(fget, fset, fdel, doc) 返回一个特性;所有参数都是可选的
super(class, obj) 返回一个超类的关联实例
dir(obj) 返回一个按字母顺序排列的属性名列表
help([obj]) 提供交互式帮助或有关特定对象的帮助信息
imp.reload(module) 返回已导入的模块的重载版本
标签:class get set warnings property 模块 mes reload AC
原文地址:https://www.cnblogs.com/thoughtful-actors/p/8986382.html