1
0
forked from tdwojak/Python2017
Python2017/labs03/task05.py
2017-12-12 18:59:49 +01:00

27 lines
638 B
Python

#!/usr/bin/env python
# -*- coding: utf-8 -*-
#task05
import os
import glob
BLEUValue = 0
BLEUFileMax = ''
for Fname in glob.glob(os.getcwd() + '\scores\*.bleu'):
with open(Fname, 'r') as fp:
#print(fp.name)
for lineFile in fp:
iList=lineFile
iList= iList.split(',')
#print(iList)
BLEUValueTmp = iList[0][7:]
BLEUValueTmp = float(BLEUValueTmp)
#print(BLEUValueTmp)
if BLEUValueTmp > BLEUValue:
BLEUValue = BLEUValueTmp
BLEUFileMax = fp.name
print "Max:", BLEUValue
print "File Name: ", BLEUFileMax