przyrost1
poprawione __str__ w plant i soil
This commit is contained in:
parent
3ddb999e3a
commit
97be779791
2
plant.py
2
plant.py
@ -16,7 +16,7 @@ class Plant:
|
|||||||
|
|
||||||
#to sie drukuje jak zapytamy o stworzony obiekt
|
#to sie drukuje jak zapytamy o stworzony obiekt
|
||||||
def __str__(self):
|
def __str__(self):
|
||||||
return 'Plant: %s , Soil: %s , Status: %s' % (self._name, self._soil, self._collect())
|
return f'Plant: {self._name}, Soil: {self._soil}, Status: {self.collect()}'
|
||||||
|
|
||||||
#metoda abstrakcyjna, kazda roslina ma inny czas rosniecia wiec pass
|
#metoda abstrakcyjna, kazda roslina ma inny czas rosniecia wiec pass
|
||||||
@abstractmethod
|
@abstractmethod
|
||||||
|
2
soil.py
2
soil.py
@ -15,7 +15,7 @@ class Soil:
|
|||||||
self.plant_remove()
|
self.plant_remove()
|
||||||
|
|
||||||
def __str__(self):
|
def __str__(self):
|
||||||
return '(%s, %s), Plant: %s' % (self._x, self._y, self.have_plant())
|
return f'{self._x}, {self._y}), Plant: {self._plant}'
|
||||||
|
|
||||||
# współrzędne pola
|
# współrzędne pola
|
||||||
def get_coordinates(self):
|
def get_coordinates(self):
|
||||||
|
Loading…
Reference in New Issue
Block a user