19 lines
543 B
Python
19 lines
543 B
Python
class Plant:
|
|
def __init__(self, name, heigt, age):
|
|
self.name = name
|
|
self.heigt = heigt
|
|
self.age = age
|
|
|
|
|
|
def ft_garden_data():
|
|
rose = Plant("Rose: ", 25, 30)
|
|
Sunflower = Plant("Sunflower: ", 80, 45)
|
|
Cactus = Plant("Cactus: ", 15, 120)
|
|
print("=== Garden Plant Registry ===")
|
|
print(rose.name, rose.heigt, "cm,", rose.age, "days old")
|
|
print(Sunflower.name, Sunflower.heigt, "cm,", Sunflower.age, "days old")
|
|
print(Cactus.name, Cactus.heigt, "cm,", Cactus.age, "days old")
|
|
|
|
|
|
ft_garden_data()
|