forked from tdwojak/Python2017
28 lines
651 B
Python
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 |