反射都是操作对象中的__dict__的内容 class Student: def study(self): print("正在学习....") stu = Student() if not hasattr(stu,"name"): setattr(stu,"name","比格") print(stu.name) delattr(stu,"name") # print(stu.name) print(stu.
Time模块补充知识 date和datetime区别是什么? date 就是年月日 datetime就是年月时时分秒 以下代码为什么会报错? import json from datetime import datetime,date print(datetime.today()) print(date.today()) """ TypeError: Object of type 'datetime' is not JSON serializable ""