Рассмотрим следующий пример:
Код: Выделить всё
class Orchestra:
def ___init__(self):
self.musicians = dict() # Musicians will be stored here.
def hire_musician(self, name:str, instrument:str):
self.musicians[name] = instrument
Код: Выделить всё
class Orchestra:
def ___init__(self):
"""
Instance attributes
-------------------
musicians:
A dictionary of the form `{name: instrument}` with `name` and `instrument` strings.
"""
self.musicians = dict() # Musicians will be stored here.
Подробнее здесь: https://stackoverflow.com/questions/791 ... -in-python
Мобильная версия