Kizspy | Question: 40
(Choose 1 answer)
Which data structure is being put to use in the code given below?
# Code starts
org = 'QuizOrbit'
count = {}
for i in org:
if i in count:
count[i]+=1
else:
count[i]=1
print(count)
# Code Ends
A. String
B. List
C. Tuple
D. Dictionary