본문 바로가기
Python

파일 쓰기 file write read append

by bryan.oh 2019. 2. 14.
반응형

 

파일쓰기

 - 'w' 는 쓰기모드. 없으면 생성하고, 있으면 덮어씁니다.

f = open('test01.txt', 'w')
f.write('hello~\n')
f.write('bryan!')
f.close()
 

 

파일읽기

 - 'r' 읽기모드. 파일이 없으면 오류발생합니다.

f = open('test01.txt', 'r')
allText = f.read()
f.close()
print(allText)
 

- f.read(),  f.readline(),  f.readlines()

 

결과

1
2
>>> hello~
>>> bryan!
cs

 

 

- 이어 붙히기

f = open('test01.txt', 'a')
f.write('\nappend something..')
f.close()

 

- 파일 읽기 readline()

f = open('test01.txt', 'r')
while True:
    line = f.readline()
    if not line: break
    print(line)
f.close()

 

결과

1
2
3
4
5
hello~
 
bryan!
 
append something..
cs

 

728x90
반응형

댓글