2021-03-29 17:58:15 +02:00
|
|
|
class Station:
|
|
|
|
def __init__(self, collected_plants):
|
2021-04-03 11:24:39 +02:00
|
|
|
self.collected_plants = collected_plants #collected_plants to słownik, przechowuje informacje o oddanych plonach
|
|
|
|
def get_collected_plants(self, name): #zwraca łączną ilość oddanych plonów dla podanej rośliny (name)
|
2021-03-29 17:58:15 +02:00
|
|
|
return self.collected_plants[name]
|
2021-04-03 11:24:39 +02:00
|
|
|
def set_collected_plants(self, name, value): #dla podanej rośliny (name) ustawia łączną ilość oddanych plonów (value)
|
2021-03-29 17:58:15 +02:00
|
|
|
self.collected_plants[name] = value
|