“Daftar Zip ke Kamus Python” Kode Jawaban

Daftar Zip ke Kamus Python

keys = ['a', 'b', 'c']
values = [1, 2, 3]
dictionary = dict(zip(keys, values))
print(dictionary) 
# {'a': 1, 'b': 2, 'c': 3}

Python Zip mencantumkan Kamus

# app.py

stocks = ['reliance', 'infosys', 'tcs']
prices = [2175, 1127, 2750]
dictionary = dict(zip(stocks, prices))
print(dictionary)
Super Salamander

Kamus Konversi 2 daftar menjadi kamus, gunakan zip ()

# convert 2 lists into a dictionary, use zip()

aa = [1, 2, 3]
bb = ["a", "b", "c"]

print(dict(zip(aa, bb)))
# {1: 'a', 2: 'b', 3: 'c'}
Sore Sloth

Jawaban yang mirip dengan “Daftar Zip ke Kamus Python”

Pertanyaan yang mirip dengan “Daftar Zip ke Kamus Python”

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

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya