я переделываю под файл, но выдает ошибку
AttributeError: '_io.TextIOWrapper' object has no attribute 'most_common'
from itertools import tee
from collections import Counter
def m(s):
a, b = tee(s)
next(b)
return Counter(l1 + l2 for l1, l2 in zip(a, b))
m = open('result.txt')
m.most_common()