반응형
파일쓰기
- '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
반응형
'Python' 카테고리의 다른 글
[python] Dictionary 의 특정 값의 sum, max, min 값 가져오기 (0) | 2019.02.15 |
---|---|
[python] console 에서 Ctrl+C 로 종료 시 에러메시지 안뜨게 하기 (0) | 2019.02.15 |
[python]list dictionary sort multiple (여러 키로 정렬시키기) (0) | 2019.02.14 |
python 오늘날짜, 현재시간 now (0) | 2019.02.13 |
python dictionary 에서 max 값 가져오기 (key or value) (0) | 2019.02.13 |
댓글