Для меня как для начинающего, это было сложно, но интересно, вот к чему пришел.
Надеюсь поможет)
# from python.su
from collections import Counter
import re
a = []
o = open('urls.txt', 'r')
f = o.read().split()
st = str(f)
r = re.findall('/\w+/', st)
for x in r:
item = ''.join(x)
a.append(item)
c = Counter(a)
print(c, end='\n')
>>> Counter({'/starlife/': 13, ‘/politics/’: 11, ‘/video/’: 10, ‘/world/’: 9, ‘/articles/’: 7, ‘/incidents/’: 6, ‘/science/’: 6, ‘/business/’: 5, ‘/cis/’: 4, ‘/head/’: 3, ‘/sport/’: 3, ‘/middleeast/’: 3, ‘/economics/’: 3, ‘/latest/’: 2, ‘/health/’: 2, ‘/lifestyle/’: 2, ‘/moscow_city/’: 1, ‘/travel/’: 1, ‘/auto/’: 1, ‘/scitech/’: 1, ‘/slides/’: 1, ‘/finances/’: 1, ‘/europe/’: 1, ‘/kinomusic/’: 1})