본문 바로가기

Python/Python 어렵게 배우기

Python 어렵게 배우기 - Exercise 16: Reading and Writing Files

원문 : http://learnpythonthehardway.org/book/ex16.html


파일을 읽고 써 보자 (ex16.py)

from sys import argv

script, filename = argv

print "We're going to erase %r." % filename
print "If you don't want that, hit CTRL-C (^C)."
print "If you do want that, hit RETURN."

raw_input("?")

print "Opening the file..."
target = open(filename, 'w')

print "Truncating the file.  Goodbye!"
target.truncate()

print "Now I'm going to ask you for three lines."

line1 = raw_input("line 1: ")
line2 = raw_input("line 2: ")
line3 = raw_input("line 3: ")

print "I'm going to write these to the file."

target.write(line1)
target.write("\n")
target.write(line2)
target.write("\n")
target.write(line3)
target.write("\n")

print "And finally, we close it."
target.close()



결과





알 수 있는 내용...

1. 파일을 읽거나 쓸때는 open 으로 파일 객체를 만들어야 한다.

2. open 할때 'w', 'r', 'a' 중 하나의 모드를 선택 할 수 있다.

3. 파일을 쓸때는 open함수의 결과로 받아온 파일 객체에 write로 내용을 작성 close() 하면서 저장한다.

4. 파일의 모든 내용을 삭제 할 때는 truncate 함수를 사용한다.

5. 파일 객체와 관련된 명령어들 (원문 참조...)

  close -- Closes the file. Like File->Save.. in your editor.

  read -- Reads the contents of the file. You can assign the result to a variable.

  readline -- Reads just one line of a text file.

  truncate -- Empties the file. Watch out if you care about the file.

  write(stuff) -- Writes stuff to the file.



반응형