随笔分类 -  python

提升代码质量
摘要:check_td = {'TargetApplication': TargetApplication,'UserId': UserId, 'UserName': UserName, 'CreatedDate': date, 'LastRetryDate': LastRetry_Date, 'Numb 阅读全文
posted @ 2022-03-04 14:41 苍耳冬阳 阅读(85) 评论(0) 推荐(0)
摘要:创建大量的对象 对于主要当成简单的数据结构类而言,通过添加__slots__属性来极大的减少实例所占用的内存eg: class Date: __slots__ = ['year', 'month', 'day'] def __init__(self, year, month, day): self. 阅读全文
posted @ 2022-02-26 09:51 苍耳冬阳 阅读(77) 评论(0) 推荐(0)