“Python używa listy jako klucza słownika” Kod odpowiedzi

Listy do Pythona słownika

#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

przekonwertować klucze słownikowe na list Python

newlist = list()
for i in newdict.keys():
    newlist.append(i)
Thoughtless Tiger

Python używa listy jako klucza słownika

# Declaring a dictionary
d = {} 
  
# This is the list which we are 
# trying to use as a key to
# the dictionary
a =[1, 2, 3, 4, 5]
  
# converting the list a to a string
p = str(a)
d[p]= 1
  
# converting the list a to a tuple
q = tuple(a) 
d[q]= 1
  
for key, value in d.items():
    print(key, ':', value)
Jepsiko

Odpowiedzi podobne do “Python używa listy jako klucza słownika”

Pytania podobne do “Python używa listy jako klucza słownika”

Więcej pokrewnych odpowiedzi na “Python używa listy jako klucza słownika” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu