摘要:
2.异步并行 支持上下文:TODO 阅读全文
摘要:
1.csv文件简介 2.csv模块 3.ini文件处理,作为配置文件ini文件很流行 阅读全文
摘要:
1.运算符重载之反向运算 2.__slots__问题引出、 阅读全文
摘要:
1.setup.py wheel pip install wheel 阅读全文
摘要:
BaseException是所有内建异常类的基类 Exception及其子类 ArithmeticError LookupError 自定义异常 as子句 finally子句 try的工作原理 阅读全文
摘要:
import sys#import module (.py)import functools #名词空间 functoolsprint(functools)print(" os ")import os.path #dir-->名词空间 os;;os&path是二个py文件print(os)from 阅读全文
摘要:
1.在运行时,对属性,方法,函数等进行动态替换 2.其目的往往是为了通过替换,修改来增强,扩展原有代码的能力 #test2.py class Person: def get_score(self): ret = {'english':80,'history':100,'chinese':150} r 阅读全文
摘要:
1.描述器的表现 2.描述其的定义 总结:实例的__dict__优先于非数据描述器;;;数据描述器优先于实例__dict__ 2.1描述器查找顺序和__dict__的关系 2.3练习 阅读全文