puu={"kogus":0} f=open("regiviisid.txt") f.readline() for rida in f: puu["kogus"]+=1 noot1=rida.split(",")[10] if noot1 not in puu: puu[noot1]={"kogus":1} else: puu[noot1]["kogus"]+=1 for paar in sorted(([puu[noot]["kogus"], noot] for noot in puu if not noot=="kogus"), reverse=True): if paar[0]>100: print(paar[1], ' - ', paar[0])