import glob pliki = glob.glob('scores/*') wyniki = [] for plik in pliki: f = open(plik, 'r') tekst = f.readline() tekst = tekst.split(" ") tekst = [x.strip(",") for x in tekst] wyniki.append(tekst[2]) f.close() index = wyniki.index(max(wyniki)) sciezka = pliki[index] print(sciezka)