 |
 |
 |
 |
 |
 |
 |
 |
 |
 |
 |
 |
| |
Things
that have type, identity and state
|
|
|
|
|
An
object is a kind of something (type)
|
|
|
|
|
Different
objects have different identity
|
|
|
|
|
Objects
have state (value)
|
|
|
| |
Instances
of classes (types)
|
|
|
>>>
type(object) # object.__class__
|
|
>>>
id(object)
|
|
|
>>>
print object
|
|