how to make classes in python code example
Example 1: create and use python classes
class Mammal:
def __init__(self, name):
self.name = name
def walk(self):
print(self.name + " is going for a walk")
class Dog(Mammal):
def bark(self):
print("bark!")
class Cat(Mammal):
def meow(self):
print("meow!")
dog1 = Dog("Spot")
dog1.walk()
dog1.bark()
cat1 = Cat("Juniper")
cat1.walk()
cat1.meow()
Example 2: what is an object in python
Example 3: classes in python
class Person():
alive = True
def __init__(self, name, age):
self.name = name
self.age = age
def speak(self):
print(f'Hello, my name is {self.name} and my age is {self.age}')
person_one = Person('Sam', 23)
person_one.speak()
==================================================================
>>> 'Hello, my name is Sam and my age is 23'
Example 4: class in python
10
<function Person.greet at 0x7fc78c6e8160>
This is a person class
Example 5: how to define a class in python
class a_class:
def __init__(self, input1):
self.__input1 = input1
def return_input(self):
return self.__input1
a_class_object = a_class("input string")
print(a_class_object.return_input())