cafepy.com

Python Types and Objects

Abstract

Explains different Python new-style objects:

  • what are the <type 'type'> and <type 'object'> types
  • how user defined classes and instances are related to each other and to built-in types
  • what are metaclasses

The system described is sometimes called the Python type system, or the object model.

Read The Book

Related

This book is part of a series:

  1. Python Types and Objects [you are here]

  2. Python Attributes and Methods

Comments

28 Jan, 2006
Anonymous*:

No-one commented on this great tutorial yet? For shame!

This (along with "Python Attributes and Methods") is the most lucid explanation of Python's OO system that i know of.

21 Dec, 2006
Anonymous*:

Your site has very much liked me. I shall necessarily tell about him to the friends.

11 Jan, 2007
Anonymous*:

Sehr guten site. Alles arbeitet deutlich(klar), schon eben storungsfrei. Wer machte? Vielleicht vom Weg?

14 Jan, 2007
Anonymous*:

Interesting, but navigation system is a little bit confusing

12 Apr, 2007
Anonymous*:

Excellent tutorial! This information will be very helpful for anyone exploring the Python C API.

17 Jun, 2007
Eiwot Towie:

Very good tutorial ! Thanks for your sharing. I also created Python articles at http://pyarticles.blogspot.com

23 Nov, 2007
Anonymous*:

Awesome! One of the best Python article. Thanks a ton!

07 Feb, 2008
Anonymous*:

Great article. You really know how to put it simple, clear and entertaining. I enjoyed every word of it.

08 May, 2008
Anonymous*:

Been looking all over for something like this. Well done.

10 Jun, 2008
Anonymous*:

Excellent tut! Ive been searching the net for these advanced topics. These 'books' are a MUST read for any pythonist that wants to dig up that python inner black magic.

05 Jul, 2008
Anonymous*:

Took me a while to read and grok them, but they're excellent and exactly what I was looking for. Thanks a bunch!

08 Aug, 2008
Anonymous*:

This cleared up a lot of my confusion... thanks! As an earlier post put it, "Your site has very much liked me. I shall necessarily tell about him to the friends."

09 Dec, 2008
Anonymous*:

This book is quite unique ! After more than 200 hours of reading and self-studying of Python (and I am still bad at it), this text is of tremendous quality, even for beginners ! It is concise ; It is very explicit and well illustrated; I have not seen a text so clear about the internals of Python for months;

Some people (e.g: me) need to know how a machine work before using it: you're the one that do it best for Python !

So for anyone who thinks that "objects" and "instances" are impalpable matter that flow between classes and methods, read the book !

24 Feb, 2009
Anonymous*:

Just want to thank you for an excellent summary of the fundamentals of objects in Python. I'm actually a beginner to Python but have been asking myself these sort of questions (of which you answer many in your chapters) about the fundamentals of how the language works. I feel like I've surpassed many so-called experienced Python programmers who never bother with these issues and just want to get a job done. Once again, thanks a lot for this great resource.

01 Mar, 2009
Anonymous*:

amazingly hard to understand.

13 May, 2009
Anonymous*:

Thanks for the great tutorial. Using the word class for "type" would simplify the discussion a lot. Design behind creating the circular reltationship between type and class is not explained here. That would have really helped.

02 Jul, 2009
Anonymous*:

I loved this site and have learned a lot. I could use python fairly well but had some confusing points. You cleared by confusion. Are you going to write article for other parts of python? Having deep understanding/knowledge on something is one thing and conveying this to others is another. You have both. THANKS

23 Aug, 2009
Anonymous*:

Thanks from Czech Rupublic.

26 Aug, 2009
Anonymous*:

I'm quite surprised at all the praise. Coming from a C++ background, I find the "type is an object" paradigm unnecessary, but I accept it has advantages. This article ("book"? please, curb your ego) has helped me understand the situation, but not without a lot of rereading.

The first source of confusion for me is where the word "base" is introduced with no mention that it describes the subtyping relationship.

The article shows isinstance(object, type) is True but doesn't also show that isinstance(type, object) is True The solid arrow connecting 'object' and 'type' in the diagram should be double-headed.

I think the "Can skim section" note is wrong: I do understand type/subtype and object/instance and I still had to reread that section several times, and then return to it after reading the later discussion, to understand what you were talking about. "Subtype an instance"? From a C++ perspective, that makes no sense.

27 Aug, 2009
Anonymous*:

The solid arrow is the issubclass relationship. The dashed arrow is the isinstance relationship. The dashed arrow could be double ended, but that is not necessary because it automatically follows from the other relationships (Example 2.2).

While subclassing an instance makes no sense in C++, in Python all classes are techincally instances and so subclassing makes sense.

If coming from C++, you basically have to forget the C++ concept of classes and assume all Python classes, meta-classes and objects are like C++ instances. All these 'instances' are located in memory and hold references to each other. There are two kinds of references (or edges in this graph of objects) - isinstance and issubclass. How the objects are connected determine how they behave.

Anyway, parts of this book seem too pedantic now and can probably be reduced or simplified.

09 Nov, 2009
Anonymous*:

In the chapter 3 Wrap Up Section Summary. issubtype maybe a typo of issubclass or not?

10 Nov, 2009
Anonymous*:

thank you so much for your Python Types and Objects online book - it has clarified so much that I have been struggling with, unable to get a clear answer. your flow chart maps are very helpful

11 Nov, 2009
Anonymous*:

Very fine analysis and explanation. Thanks for the tutorial. If the basics are cleared then anybody can even read the python source for the libraries and understand them easily as python is that fine. Try to put your book into the Python documentation section. It will be very useful for all the eyes that watch the docs. Oh and i forgot to ask 'How is Squasher?' ;)

21 Dec, 2009
Anonymous*:

this is crap

05 Feb, 2010
Anonymous*:

the commentary can be a little too cheesy at points...

23 Feb, 2010
Anonymous*:

Beautifully explained. Thank you!

14 Apr, 2010
Hazem*:

Very Nice explanations ... Thanks you very much .. I was having a great problem with those concepts, but NOW, they are almost vanished >> Again ,, thanks alot .. You are really a python master

18 Apr, 2010
Anonymous*:

Just great! Basics for every python programmer.

07 May, 2010
Anonymous*:

This is fantastic. It made way more sense than any other explanation of any aspect of Python I've ever read. Very well written and excellently pitched. Maybe not for everyone but perfect for me.

11 May, 2010
Beverly*:

Great explanation! Thank you for a wonderfully written tutorial.

10 Oct, 2010
NeuronQ*:

A little bewildering, thanks god for the diagrams. But this is the only undertandable explanation of these things (maybe because I'm a visual thinker and I say your drawings). Some things about subclassing and metaclasses I don't quite get, but I'm not so deep in advanced python to need them anyway...

Thanks!

21 Nov, 2010
Dick*:

Thank you for the article. I am a newbie to Python. This is the first explanation of the language definition that seems to removeexplain the circular definitions. I suspect I will have to re-read later to understand it all but this really helps.

01 Dec, 2010
Marcus*:

Excellent tutorial. Against your recommendations I tried it a few years ago when I was new to Python and understood nothing, but now with more experience, it made very much sense (more so than any other source I have tried).

two notes:

  • In python 3, type(list), type(object) etc now returns (with home-made html escapes, I can't get them to work)

lt class 'type' gt

rather than

lt type 'type' gt

I found that confusing at first -- you may wish to add a line about the change.

  • The following is now a fact rather than an assumption:
    ClassType object exists for backward compatibility and may not exist in future versions of Python

cheers

17 Dec, 2010
Juraj*:

I would sum it up as follows: consider types, objects, classes and instances.

rule 1: Everything is an object (types are objects, objects are objects, classes are objects and instances are objects)

rule 2: Everything has a type (objects have a type, types have a type, classes have a type, and instances have a type)

Very nice tutorial and helps clarify a lot of otherwise muddy concepts.

20 Dec, 2010
Anonymous*:

a very intuitive way to explain the relationships between "type" and "class" in python. a great article ! thanks

06 Feb, 2011
Confused*:

What does type(NewStyleClass) return (class with the object class as a parent)? Does the enumeration value exist in the types module? What version of python does this enumeration value exist in?

  • Confused
07 May, 2011
Anonymous*:

Somebody translated the entire text into Chinese! http://wiki.woodpecker.org.cn/moin/PyTypesAndObjects

09 May, 2011
Sam*:

+++They can be subclassed. This means you can create a new object that is somewhat similar to existing type objects. The existing type objects become bases for the new one.

02 Jun, 2011
Anonymous*:

Excellent guide, thanks. My only quibble is with this passage:

...if one is asked to list words similar to 'snake', one is likely to come up with 'reptile'. However, when asked to list words similar to 'Squasher', one is unlikely to say 'snake'.

Isn't the distinction here that "snake" and "reptile" are words in common use, whereas the proper name "Squasher" is not? Presumably, if one were familiar with Squasher the python, one would quickly think to list the word snake, the same way most everyone would say "dog" if asked to list words similar to "Snoopy".

07 Sep, 2011
shashaDeNovo*:

A great book i ever came across. Thanks Shalabh ji . A great work Sir !!!

24 Dec, 2011
bug-e*:

WOW! Eager to read what's in the next chapter.

Thanks a ton! I really appreciate it.

PS: ist hard to get captcha right. hoof!

12 Jan, 2012
Kevin*:

I am so glad I came across this. It just nails the concepts perfectly.

Many thanks!

12 Jan, 2012
Anonymous*:

Excellent article.

I think there's a small bug with Example 2.2. I think that numbers 1 and 2 do not refer to the commands.

In general, it would be nice to try out, and explain, all four possibilities of isinstance with object and type.

Thank you for the great article.

04 Feb, 2012
nobilobevo*:

No backup system should be without these features. They very much live life to their own needs and sometimes that can make them seem out of step with society, however Aquarians don't care, as all they want is to meet their own expectations of themselves. The reason that causes them to run after the cash-flows is the given economic scenario where almost all kinds of businesses are struggling to survive due to cash-strapped economic situation. [HTML_REMOVED]outerwear[HTML_REMOVED] It is acceptable for women to admit to being frightened, be timid or say, 'no I don't want to', whereas the male has to be seen to be strong, assertive and to fear little. They will also keep you focused and motivated on your goals.

Post Comment
Sign In or provide:
Name*
Email*
Not disclosed
Human Test*
Comment*
Markdown formatting
powered by qp