Since type is the superclass of all classes,why isinstance(1,type) gives as False?
Am I understanding the concept wrong?
|
|
||||
|
|
|
The number 1 is not an instance of type. Rather, the Edit: These examples may help you:
From your comment, it seems you are misunderstanding how inheritance works. There is a difference between being an instance of a type and being a subclass (or subtype) of a type. If an object X is an instance of type A, and type A is a subclass of type B, then X is also an instance of B. But if type A is an instance of type B, then X is not an instance of B. In other words, subclasshood is transitive, but instancehood is not. A real world analogy would be between something like "species" and "homo sapiens". You could say that "species" is a type and "homo sapiens" is an instance of that type; in other words, "homo sapiens" is a particular species. But "homo sapiens" is also a type, and an individual human is an instance of that type. For instance, Barack Obama (to pick a well-known example) is an instance of "homo sapiens"; that is, he is a particular homo sapiens. But Barack Obama is not an instance of species; he is not a species himself. The relationship between |
|||||||||
|
