Answers for "iter dict python2"

37

python iterate through dictionary

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
Posted by: Guest on November-12-2019
0

enumerate dictionary python

# Iterate over dictionary using enumerate()

mydict = {
	"one": 1,
  	"two": 2,
  	"three": 3
}

# You can replace `index` with an underscore to ignore the index 
# value if you don't plan to use it.
for index, item in enumerate(mydict):
	print(f"{item}: {mydict.get(item)}")

# OUTPUT:
# one: 1
# two: 2
# three: 3
Posted by: Guest on August-22-2020

Python Answers by Framework

Browse Popular Code Answers by Language