원문 : 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() 함수를 이용해서 읽어 낸다.
반응형
'Python > Python 어렵게 배우기' 카테고리의 다른 글
Python 어렵게 배우기 - Exercise 17: More Files (0) | 2013.12.04 |
---|---|
Python 어렵게 배우기 - Exercise 16: Reading and Writing Files (0) | 2013.12.03 |
Python 어렵게 배우기 - Exercise 14: Prompting and Passing (0) | 2013.12.02 |
Python 어렵게 배우기 - Exercise 13: Parameters, Unpacking, Variables (0) | 2013.12.02 |
Python 어렵게 배우기 - Exercise 12: Prompting People (0) | 2013.11.28 |