摘要: import csv import random class XmlFormat(object): def __init__(self): self.wf = open('data/res_location.xml', 'w', encoding='utf-8') self.add_header() 阅读全文
posted @ 2020-07-15 19:54 那时一个人 阅读(335) 评论(0) 推荐(0)
摘要: def func(*args, **kwargs): print('{}'.format(kwargs)) print('{}'.format(args)) pass if __name__ == '__main__': var_kw = dict( a=1, b=2 ) func(1, 2, a= 阅读全文
posted @ 2020-07-15 15:10 那时一个人 阅读(550) 评论(0) 推荐(0)