摘要:
内置的数据类型: int float complex str list tuple dict set 基础数据类型: int float complex str list tuple dict collections模块: 根据基础数据类型又做了一些扩展 1、OrderdDict:有序字典 Pyth 阅读全文
摘要:
一、time模块(时间模块) 三种格式: 1、时间戳时间(timestamp):浮点数,秒为单位,从1970年1月1日0时距今的时间 1970.1.1 0:0:0 英国伦敦时间(开始时间) 1970.1.1 8:0:0 北京时间(东8区) 2、结构化时间(struct_time): 元组(tm_ye 阅读全文
摘要:
一:__new__ 在__init__之前,实例化对象的第一步是__new__创建了一个空间 class Foo: def __init__(self): # 初始化方法 print('执行了init') def __new__(cls, *args, **kwargs): # 构造方法 print 阅读全文