This commit is contained in:
lfirmin
2026-01-07 21:42:11 +01:00
parent d02ef5f88a
commit 11040c45b8
25 changed files with 572 additions and 3 deletions
@@ -0,0 +1,18 @@
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()