I need to print a dictionary containing values
freqs = {',': 1, '8': 3, '0': 3, '6': 1, '7': 2, '!': 1, '+': 2, '#': 8, '%': 4, '.': 1, '&': 7, '/': 1, '1': 3, ')': 2, '"': 1, '-': 2, '3': 6, '5': 1, '$': 1, '2': 2, '*': 4, '4': 2, "'": 1, '9': 1, ':': 1}
This is a dictionary showing a character and the number of times it appears in a string. I want to show it to the user in two columns like so:
, (TAB) 1
8 (TAB) 3
0 (TAB) 3
etc..
Any help would be much appreciated :)