Thursday, September 11, 2014

Python 텍스트 파일 읽기

#c:\ProjectList.txt에서 모든 라인을 읽어서 화면에 출력하는 예제
ProjectList= 'c:\\ProjectList.txt'
fo = open(ProjectList, "r")
while 1:
    ln = fo.readline()
    if not ln:
        break
    print ln
fo.close()

No comments:

Post a Comment