“ZIP -Liste zu Dictionary Python” Code-Antworten

ZIP -Liste zu Dictionary Python

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

Python Zip listet in Wörterbuch auf

# app.py

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

Dictionary Convert 2 Listen in ein Wörterbuch, verwenden Sie 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

Ähnliche Antworten wie “ZIP -Liste zu Dictionary Python”

Fragen ähnlich wie “ZIP -Liste zu Dictionary Python”

Weitere verwandte Antworten zu “ZIP -Liste zu Dictionary Python” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen