print('The most frequent bigram tags are:\n')
bigram = bigram_frequency(lines)
for i in bigram:
print(i[0]+"\t\t"+str(i[1]))
here's what I get:
N+N 5
N+DELM 3
DELM+DELM 2
N+P 2
DELM+P 2
P+N 2
DELM+N 2
CON+N 2
N+CON 2
How should I align that funny 2 from the third row with the rest of the group?