086 Everything target

table of Contents

A class data type

  • python3 unified concept of class and type of class is the type of

    class Foo:
        pass
    
    
    obj = Foo()
    print(type(obj))

    <class 'main.Foo'>

He said before Python built-in data type is actually a class. Just python native classes, and built-in method.

Guess you like

Origin www.cnblogs.com/XuChengNotes/p/11413199.html