logging模块、json序列化数据类型、单例、exception和baseException

1.logging模块的作用以及应用场景

https://www.cnblogs.com/petrolero/p/9788134.html

2.json序列化可以处理的数据类型有哪些,如何定制支持datetime类型

https://www.cnblogs.com/wangkun122/p/9084825.html

3.简述你所能实现的单例模式有哪些,越多越好

https://www.cnblogs.com/michealjy/p/11469311.html

抛异常中的exception和BaseException的区别:

BaseException: 包含所有built-in exceptions

Exception: 不包含所有的built-in exceptions,只包含built-in, non-system-exiting exceptions,像SystemExit类型的exception就不包含在里面。

猜你喜欢

转载自www.cnblogs.com/michealjy/p/11823422.html