“Список Dict Python” Ответ

Список на строку Python

list1 = ['1', '2', '3']
str1 = ''.join(list1)
Amused Antelope

Список Dict Python

my_list = ['Nagendra','Babu','Nitesh','Sathya']
my_dict = dict() 
for index,value in enumerate(my_list):
  my_dict[index] = value
print(my_dict)
#OUTPUT
{0: 'Nagendra', 1: 'Babu', 2: 'Nitesh', 3: 'Sathya'}
InsomaniaCl

Список Python DICT

keys = ('name', 'age', 'food')
values = ('Monty', 42, 'spam')
out = dict(zip(keys, values))
Kevin Yeung

Списки в словарь Python

#This is to convert two lists into a dictionary in Python

#given ListA is key
#given ListB is value

listA = ['itemA','itemB']
listB = ['priceA','priceB']
dict(zip(listA, listB))

# Returns 
{'itemA': 'priceA',
 'itemB': 'priceB'
}
Frightened Ferret

Список дикта, чтобы Dict Python

single_dict = dict((k,v) for k,v in [item for subtup in list_of_dict for item in subtup])
Clever Caterpillar

Ответы похожие на “Список Dict Python”

Вопросы похожие на “Список Dict Python”

Больше похожих ответов на “Список Dict Python” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования