[142] 텍스트 파일 복사하기(read, write)

책 내용에 대한 무단배포 방지를 위해 최소한으로 정리

f = open('stockcode.txt', 'r')
h = open('stockcode_copy.txt,'w')

data = f.read()
h.write(data)

f.close()
h.close()

Comments