摘要: type时所有元类的父亲object是type(object的类型是type),type也是object(type继承自object) >>> isinstance(object, type) True >>> isinstance(type, object) True 在python中一切皆obj 阅读全文
posted @ 2017-12-08 20:10 TAMAYURA 阅读(250) 评论(0) 推荐(0)