├── README.md └── code /README.md: -------------------------------------------------------------------------------- 1 | # Binary-Botanics -------------------------------------------------------------------------------- /code: -------------------------------------------------------------------------------- 1 | class Plant: 2 | def __init__(self, name): 3 | self.name = name 4 | 5 | def grow(self): 6 | print(f"The {self.name} is growing...") 7 | 8 | plant = Plant("Rose") 9 | plant.grow() 10 | --------------------------------------------------------------------------------