Define a class simply so
A class variable can be declared as such
The constructor for the class
def __init__(self, name, age):
Despite the constructor accepting three arguments,
the method gets called only with two arguments
Note that functions that belong to a class are called methods.
A class method can be declared as such
print("Hello", self.name)
A static method can be declared as such
To create a new instance of the class, simply call
person = Person("John", 30)
To call a method, simply use the dot operator