Помогите с функцией чайнику

UniQue

Новичок
Пользователь
Сен 21, 2020
2
0
1

def to_dictionary(names: list) -> dict:
""" Make a dictionary from a list of names.
:param names
: list of all the names
:return: dictionary {"name:sex": number} """
pass
 

stud_55

Модератор
Команда форума
Модератор
Апр 3, 2020
1 522
672
113
Вот пример:
Python:
names = ['zero', 'one', 'two']

def to_dictionary(names: list) -> dict:
    """
    Make a dictionary from a list of names.
 
    :param names: list of all the names
    :return: dictionary {"name:sex": number}
    """
    return {item: i for i, item in enumerate(names)}

print(to_dictionary(names))  # {'zero': 0, 'one': 1, 'two': 2}
 

Форум IT Специалистов