Files
42-Piscine_Python/01/ex0/ft_garden_intro.py
David Gailleton 9818ec9dc6 01 to 3 i think
2025-12-18 20:27:31 +00:00

12 lines
263 B
Python

if __name__ == "__main__":
name = "Rose"
height = "25"
age = "30"
print("=== Welcome to My Garden ===")
print("Plant:", name)
print("Height:", height, "cm")
print("Age:", age, "days")
print("")
print("=== End of Program ===")