mirror of
https://github.com/DavidGailleton/42-Piscine_Python.git
synced 2026-03-13 20:56:54 +01:00
12 lines
272 B
Python
12 lines
272 B
Python
if __name__ == "__main__":
|
|
name = "Rose"
|
|
height = "25"
|
|
age = "30"
|
|
|
|
print("=== Welcome to My Garden ===")
|
|
print("Plant:", name)
|
|
print("Height: ", height, "cm", sep="")
|
|
print("Age:", age, "days")
|
|
print("")
|
|
print("=== End of Program ===")
|