1
0
Fork 0
Python2017/labs03/task05.py

28 lines
651 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
fp.close
print "Max:", BLEUValue
print "File Name: ", BLEUFileMax