分类

链接

2024 年 11 月
 123
45678910
11121314151617
18192021222324
252627282930  

近期文章

热门标签

新人福利,免费薅羊毛

python静态变量赋值

使用dir获取所有属性(包含静态),使用Exce赋值   import json     class Article(object):     title = None     link = None     abstract = None     keywords = []     content = None     pub_date = None     xxx = '99999'       def __init__(self):         for p in dir(self):             if not p[0:2] =='__':                 exec('self.'+p+' = Article.'+p)           pass                    a = Article() print(a.__dict__) output:  {'abstract': None, 'content': None, 'keywords': [...

Python 暂无评论 阅读(82)