# -*- coding: utf-8 -*- __author__ = 'bobby' a=1 b="abc" print(type(1)) print(type(int)) print(type(b)) print(type(str)) class Student: pass stu = Student() print(type(stu)) print(type(Student)) print(int.__bases__) print(str.__bases__) print(Student.__bases__) print(type.__bases__) print(object.__bases__) print(type(object))
本文来自博客园,作者:孙龙-程序员,转载请注明原文链接:https://www.cnblogs.com/sunlong88/articles/9350209.html