Simple Object

File Name: simple-object.py

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
# import simple_class as sc
from simple_class import Bus, Fruit, WashingMachine

bus = Bus()
print(f"Bus Model is {bus.model}")

fruit = Fruit()
print(f"Fruit name : {fruit.name}, color: {fruit.color} ")

wash_machine = WashingMachine()

wash_machine.wash_clothes()
print(f"Washing Machine name : {wash_machine.brand}, color: {wash_machine.model} ")