프로그래밍/Python
2018. 9. 9.
[Python] 파일 읽고 쓰기 방법
○ 파일 읽고 쓰기 예제??txt파일이나 여러 파일들을 읽어서 프로그래밍하는 경우가 많이 존재한다. 이번에는 Python을 통해서 텍스트 파일을 읽어서 out.log파일로 써보도록 하자~!우선 읽고자 하는 파일은 test.txt로 하고 메모장에 test.txt에 1 2 3 4 5 6 7 8 9로 입력을 하고 파이썬 파일에 저장을 하자~!infile_name = input('Please input file name : ') outfile_name = "out.log" with open(infile_name) as infile : with open(outfile_name, "w") as outfile : for in_line in infile.readlines(): outfile.write("read fro..