Python Tutorial 8 - Functions | How to create nested function in python

preview_player
Показать описание
Python 3 Programming Tutorial - Function Parameter | How to create nested function in python | How To Use Functions In Python
Рекомендации по теме
Комментарии
Автор

Very helpful! Just what I need for a simple script I'm working on

maximusbicalan
Автор

say I have a dict
list_o_nums = {3, 4, 5, 6}
second_num = 3
list_dict = dict.fromkeys(list_o_nums, second_num)
print(list_dict)
{3: 3, 4: 3, 5: 3, 6: 3}

How would I pass the contents of list_dict to the function?

pleabargain
join shbcf.ru