-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbasic.py
84 lines (59 loc) · 2.35 KB
/
basic.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
"""
Class:
------
`Class` are just like a building blueprint, they provide you with the
specifications of how to construct a building. It is upto you when and
how you build the building.
Instance:
---------
When you actually construct a building out of the blueprint, it is called as
an `Instance` or `Object` of the class. So, both are related but essential
different terminology.
Class = Blueprint, Instance = Building
Methods:
--------
These are just normal functions, but defined to alter the behavior of your instance or class.
Since they are tied to a class, they are called as methods. Their behavior is dependent on
the structure you define in the class.
When to use Class:
------------------
Use classes only when you need `Structure` and `Behavior` together.
If you only need structure, then choose from any existing data structures such as
list, tuple, dictionary, queue, etc. Just need a behavior? Then just create a function
that transforms your data.
"""
# -------------------------------------------------------------------------
class SomeClass:
"""Defines an empty class."""
pass
print(SomeClass)
# -------------------------------------------------------------------------
class Person:
"""Defines a person."""
def __init__(self, first_name: str, last_name: str) -> None:
"""This special/dunder or magic method initializes an instance of class."""
self.first_name = first_name
self.last_name = last_name
def __repr__(self) -> str:
"""Official representation of class"""
return "<class 'Person'>"
def __str__(self) -> str:
"""This magic method provides string representation of an instance."""
return f"Person: {self.first_name} {self.last_name}"
def greet(self) -> None:
"""Method that prints a greeting message"""
print(f"{self.first_name} says Hello 👋")
# -------------------------------------------------------------------------
# Create an `instance` of class/type `Person`
p1 = Person("Louis", "Zappa")
p2 = Person("Cece", "Neutron")
print(p1)
print(p2)
# Both are different instances of the same class at different memory location
print(f"p1 is located at memory address: {hex(id(p1))}")
print(f"p2 is located at memory address: {hex(id(p2))}")
# Possible but not recommended
print(p1.__str__())
# Calling methods on particular instances
p1.greet()
p2.greet()