본문 바로가기

Python/Python 어렵게 배우기

Python 어렵게 배우기 - Exercise 15: Reading Files

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


읽을 파일을 먼저 만들자(ex15_sample.txt)

This is stuff I typed into a file.

It is really cool stuff.

Lots and lots of fun to have in here.



파일을 읽어보자 (ex15.py)

from sys import argv

script, filename = argv

txt = open(filename)

print "Here's your file %r:" % filename
print txt.read()

print "Type the filename again:"
file_again = raw_input("> ")

txt_again = open(file_again)

print txt_again.read()



결과




알 수 있는 내용...

1. 파일을 읽을 때는 open 함수로 파일을 우선 열고

2. open 한 결과값을 .read() 함수를 이용해서 읽어 낸다.



반응형