class Plant(): def get_symbol(self): raise NotImplementedError("Please Implement this method") def tick(self, n): raise NotImplementedError("Please Implement this method") def get_stats(self): #np. touple'a z info czy żyje, ile ma wody i nawozu raise NotImplementedError("Please Implement this method")