forked from tdwojak/Python2018
16 lines
320 B
Python
16 lines
320 B
Python
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) |