Skip to content

Commit

Permalink
Обновила задание 15.2a
Browse files Browse the repository at this point in the history
  • Loading branch information
pyneng authored Jul 3, 2019
1 parent 21cb261 commit e9f6fc5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions exercises/15_module_re/task_15_2a.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@
а значения подставлены из второго.
Например, если функции передать как аргументы список headers и список
[('FastEthernet0/0', 'up', 'up', '10.0.1.1'),
'FastEthernet0/1', 'up', 'up', '10.0.2.1')]
[('FastEthernet0/0', '10.0.1.1', 'up', 'up'),
'FastEthernet0/1', '10.0.2.1', 'up', 'up')]
Функция должна вернуть такой список со словарями (порядок полей может быть другой):
[{'interface': 'FastEthernet0/0', 'status': 'up', 'protocol': 'up', 'address': '10.0.1.1'},
{'interface': 'FastEthernet0/1', 'status': 'up', 'protocol': 'up', 'address': '10.0.2.1'}]
[{'interface': 'FastEthernet0/0', 'address': '10.0.1.1', 'status': 'up', 'protocol': 'up'},
{'interface': 'FastEthernet0/1', 'address': '10.0.2.1', 'status': 'up', 'protocol': 'up'}]
Проверить работу функции:
* первый аргумент - список headers
Expand Down

0 comments on commit e9f6fc5

Please sign in to comment.