def getMax(filename):
### Get the column value of the file
# f=open('d:\\workspace\\run_s2_d.frf')
f=open(filename)
f.readline()
allData=f.readlines()
f.close()
countLines=len(allData)
rowData=[]
magX_str=[]
magX=[]
for i in range(0,countLines-1):
rowData.append(allData[i].rsplit())
magX_str.append(rowData[i][2])
magX.append(float(magX_str[i]))
# print(magX)
maxMagX=max(magX)
# print(maxMagX)
return maxMagX
M1=getMax('d:\\workspace\\run_s2_d.frf')
print(M1)
'CAE > Enjoy Programming' 카테고리의 다른 글
Qt Designer를 이용한 Python GUI 프로그램 만들기 (0) | 2011.11.17 |
---|---|
Class와 self (0) | 2011.11.15 |
[Python] matrix vs array class (0) | 2011.10.23 |
Python용 Eclipse 개발환경 세팅하기 (0) | 2010.03.26 |
Python 공부 시작하기 위한 기초 정보들 (0) | 2010.03.25 |