“Daftar Kamus Python” Kode Jawaban

Daftar ke 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

Daftar Kamus 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

Daftar Python untuk Dikt

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

Jawaban yang mirip dengan “Daftar Kamus Python”

Pertanyaan yang mirip dengan “Daftar Kamus Python”

Lebih banyak jawaban terkait untuk “Daftar Kamus Python” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya