Python - 21

Python - 21: Classes & Objects

Classes let you create your own objects in Python.

✦ Python Editor
▶ Output

👀 Show Example Solution
class Pet:

    def __init__(self, name, animal):

        self.name = name
        self.animal = animal

    def introduce(self):

        print("Name:")
        print(self.name)

        print("Animal:")
        print(self.animal)

pet1 = Pet("Buddy", "Dog")

pet1.introduce()