Answers for "writing a dictionary for loop python"

24

python loop through dictionary

dictionary = {52:"E",126:"A",134:"B",188:"C",189:"D"}
for key, value in dictionary.items():
	print(key)
	print(value)
Posted by: Guest on July-02-2020
3

python generate dictionary in loop

n = int(input())
ans = {}
for i in range (1,n+1):
  ans[i] = i * i
print(ans)
Posted by: Guest on February-04-2020

Code answers related to "writing a dictionary for loop python"

Python Answers by Framework

Browse Popular Code Answers by Language