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就不包含在里面。
这是官方文档,最下面有一个继承树
[https://docs.python.org/3.1/library/exceptions.html#BaseException]