Skip to content

Commit 3ef732b

Browse files
author
Vimal
committed
Updated Section 1.3
1 parent 40345f9 commit 3ef732b

File tree

1 file changed

+34
-5
lines changed

1 file changed

+34
-5
lines changed

README.md

+34-5
Original file line numberDiff line numberDiff line change
@@ -53,14 +53,32 @@ Out[14]: int
5353

5454
In [15]: type(int)
5555
Out[15]: type
56+
57+
In [16]: help(int)
58+
Help on class int in module builtins:
59+
60+
class int(object)
61+
| int(x=0) -> integer
62+
| int(x, base=10) -> integer
63+
|
64+
| Convert a number or string to an integer, or return 0 if no arguments
65+
| are given. If x is a number, return x.__int__(). For floating point
66+
| numbers, this truncates towards zero.
67+
|
68+
| If x is not a number or if base is given, then x must be a string,
69+
| bytes, or bytearray instance representing an integer literal in the
70+
| given base. The literal can be preceded by '+' or '-' and be surrounded
71+
| by whitespace. The base defaults to 10. Valid bases are 0 and 2-36.
72+
| Base 0 means to interpret the base from the string as an integer literal.
73+
| >>> int('0b100', base=0)
74+
| 4
5675
```
5776

58-
**Ans:** When the python interpreter runs the `type()` function on a variable or a builtin, it's doing the following:
77+
When the python interpreter calls the `type()` function on a variable or a builtin, it does the following:
5978

60-
1. The type function follows the variable name or builtin name to the actual object.
79+
1. The `type()` function follows the variable name or builtin name to the actual object in memory.
6180
2. It reads the object metadata and calls the magic method `__class__` on it.
62-
63-
But if you run `type()` on an inbuilt function such as `int`, it returns `type` which means it's a base type.
81+
3. This prints the type of the class from which the object was created, which is of course, the class of the object as well.
6482

6583
> In the example above, the integer `1` is an instance of the inbuilt type `int`.
6684

@@ -69,7 +87,9 @@ But if you run `type()` on an inbuilt function such as `int`, it returns `type`
6987
1. Every object that is created by Python is an instance of an inbuilt type.
7088
2. Every type inherits from another type which ultimately ends by inheriting from the `object` type.
7189

72-
**NOTE:** Calling type(`something`) internally calls `something.__class__`.
90+
**NOTE:**
91+
92+
* Calling type(`something`) internally calls `something.__class__`.
7393

7494
```python3
7595
In [1]: type(1)
@@ -79,6 +99,15 @@ In [2]: (1).__class__
7999
Out[2]: int
80100
```
81101

102+
* If you call `type()` on an inbuilt such as `int`, it returns `type` which means it's a base type.
103+
104+
#### 1.4. Method Resolution Order [MRO]
105+
106+
`Method Resolution Order` is the order in which a method is resolved.
107+
108+
When a method is called on an object, it first looks up in the inherited methods (from the class from which the object was instantiated), and then moves to its parent class, if not found.
109+
110+
Hence, an integer object will first look for the methods under the `int()` class, and then the parent class of `int()`, ie.. object().
82111
**Code example**:
83112

84113
```python

0 commit comments

Comments
 (0)