If I have a given dictionary like this:
JavaScript
x
2
1
{'avglen': 4.419354838709677, 'count:': 93, 'mosts:': 'your', 'longs:': ['stretched'], 'shorts:': ['i', 'a'],}
2
how do I make each key-value print on a new line?
well its long but here is the code I’m using to get this dictionary. I pretty much added each key-value to the dictionary. So i figured out the shortest word and then I added that to the dictionary. I noticed it too that there are extra colons. but I figured its part of the values and I can use .replace() to take it away??
JavaScript
1
42
42
1
def build_report(freq):
2
report={}
3
freq_list=list(freq.keys())
4
keys=sorted(freq, key=len)
5
#for shorts:
6
shortest=keys[0]
7
shortest = [keys[0]]
8
for key in keys[1:]:
9
if len(key) == len(shortest[0]):
10
shortest.append(key)
11
else:
12
break
13
report["shorts:"]=shortest
14
#for longs:
15
longest=keys[-1]
16
longest = [keys[-1]]
17
for key in reversed(keys[:-1]):
18
if len(key) == len(longest[0]):
19
longest.append(key)
20
else:
21
break
22
report["longs:"]=longest
23
#for mode:
24
val_list=list(freq.values())
25
sorted_val_list=sorted(val_list)
26
mode=sorted_val_list[-1]
27
for key in freq.keys():
28
if freq[key]==mode:
29
mode_word=key
30
report["mosts:"]=mode_word
31
# for word count:
32
wordcount=len(list(freq.keys()))
33
report["count:"]=wordcount
34
#for average length:
35
avg=list(freq.keys())
36
average=sum(map(len,avg))/len(avg)
37
report["avglen"]=average
38
#for freq dictionary of word to word count
39
freqs=freq
40
report["freqs:"]=freqs
41
return report
42
Advertisement
Answer
If you really don’t want to import pprint but want it to “look like” a dictionary, you could do:
JavaScript
1
2
1
print("{" + "n".join("{!r}: {!r},".format(k, v) for k, v in d.items()) + "}")
2