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,23 @@
class Plant:
def __init__(self, name, heigt, age):
self.name = name
self.heigt = heigt
self.age = age
def get_info(rose):
print(rose.name, rose.heigt, "cm,", rose.age, "days old")
def ft_plant_growth():
rose = Plant("Rose", 25, 30)
print("=== Day 1 ===")
get_info(rose)
rose.heigt += 6
rose.age += 6
print("=== Day 7 ===")
get_info(rose)
print("Growth this week: +6cm")
ft_plant_growth()