FIle 썸네일형 리스트형 [Python] Python FILE 사용법 http://creaplz.tistory.com/57 1. 파일쓰기 - open(file) 내장 함수로 파일 객체를 얻음 - 얻어진 파일 객체서 자료를 읽고 씀 - close로 객체 사용을 종료(생략 가능) >>> s = ''' Its power: Python developers typically report they are able to develop application in a half to a tenth the amount of time it takes them to do the same work in such langueges as C. ''' >>> f = file('t.txt', 'w') >>> f.write(s) >>> f.close() 2. 파일 읽기 >>> f = file('t.txt'.. 더보기 이전 1 다음