Skip to content

Commit faa1290

Browse files
committedJul 16, 2022
Updated Paths
1 parent 2fd61d0 commit faa1290

15 files changed

+5
-5
lines changed
 
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

‎README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ In Python, classes are defined by the “Class” keyword
3030
```
3131
class myClass():
3232
```
33-
[Class Attributes](Class-Attributes)
33+
[Class Attributes](01.Class-Attributes)
3434

3535
------------
3636
------------
@@ -63,12 +63,12 @@ class myClass():
6363
- The self-argument refers to the object itself. Hence the use of the word self. So inside this method, self will refer to the specific instance of this object that’s being operated on.
6464
- Self is the name preferred by convention by Pythons to indicate the first parameter of instance methods in Python. It is part of the Python syntax to access members of objects
6565

66-
- Types of methods- [Check code for reference](Methods/methods.py))
66+
- Types of methods- [Check code for reference](02.Methods/methods.py))
6767
* Instance Method
6868
* Class Method
6969
* Static Method
7070

71-
* We have one more method called [magic method](Methods/magic-method.py)
71+
* We have one more method called [magic method](02.Methods/magic-method.py)
7272

7373
------------
7474
------------
@@ -121,14 +121,14 @@ def __init__(self):
121121
# body of the constructor
122122
```
123123

124-
* More about __init__ constructor [Link](init_constructor)
124+
* More about __init__ constructor [Link](04.init-constructor)
125125
------------
126126
------------
127127
#### 05. Inheritance
128128

129129
With inheritance one class can derive the properties of another class.
130130
ex- Man Inheriting features from his father
131131

132-
[Detailed Explanation](Inheritance)
132+
[Detailed Explanation](05.Inheritance)
133133

134134
------------

0 commit comments

Comments
 (0)
Please sign in to comment.