“Traversing Dictionary w Python” Kod odpowiedzi

Python Iterate Słownik Wartość kluczowa

a_dict = {'color': 'blue', 'fruit': 'apple', 'pet': 'dog'}
for key, value in a_dict.items():
  print(key, '->', value)
Zealous Zebra

Python itera się przez słownik

a_dict = {'apple':'red', 'grass':'green', 'sky':'blue'}
for key in a_dict:
  print key # for the keys
  print a_dict[key] # for the values
Australian Magpie

Traversing Dictionary w Python

#traversing dictionary function
d={1:'one',2:'two',3:'three',4:'four'}
print(d)
for i in d:
       print(i,d[i])
Gr@Y_orphan_ViLL@in##

Odpowiedzi podobne do “Traversing Dictionary w Python”

Pytania podobne do “Traversing Dictionary w Python”

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

Przeglądaj inne języki kodu