I have this function:
def total_fruit_per_sort():
number_found = re.findall(total_amount_fruit_regex(), verdi50)
fruit_dict = {}
for n, f in number_found:
fruit_dict[f] = fruit_dict.get(f, 0) + int(n)
return pprint.pprint(str( {value: key for value, key in fruit_dict.items() }).replace("{", "").replace("}", "").replace("'", ""))
print(total_fruit_per_sort())
But it prints the values like: 'Watermeloenen: 466, Appels: 688, Sinaasappels: 803'
But I want them under each other, like this:
Watermeloenen: 466
Appels: 688
Sinaasappels: 803
Question: how to archive this?
In some ways, the issue is that you are passing a
string
topprint
which has already been formatted.Maybe add
.replace(',' , '\n')
at the end of the string before printing?Using
pprint
, I think this would be the best way to format the dictionary (D
):But I guess a direct one-liner
for-loop
looks nicer: