>>> f = open('c:\\work\\data.txt','wt')
>>> f.write('한글로 출력')
6
>>> f.write('한글로 출력\n')
7
>>> f.write('abcd\n1234')
9
>>> f.close()
>>> f.closed()
Traceback (most recent call last):
File "<pyshell#13>", line 1, in <module>
f.closed()
TypeError: 'bool' object is not callable
>>> f.closed
True
>>> f = open('c:\\work\\data.txt','rt')
>>> f.read()
'한글로 출력한글로 출력\nabcd\n1234'
>>> f.tell()
34
>>> f.seek(0)
0
>>> f.tell()
0
>>> f.readline()
'한글로 출력한글로 출력\n'
>>> f.readline()
'abcd\n'
>>> f.seek(0)
0
>>> lst = f.readlines()
>>> lst
['한글로 출력한글로 출력\n', 'abcd\n', '1234']
>>> for item in lst:
print(item)
한글로 출력한글로 출력
abcd
1234
>>> for item in lst:
print(item.replace('\n',''))
한글로 출력한글로 출력
abcd
1234
(파일안의 내용을 리스트화 시키고 리스트화 시킨 정보에서 \n 을 제외시키는 부분으로 처리하여 제외하여 리스트 표시)
'IT 이야기 > Programming' 카테고리의 다른 글
문자열 처리함수 (0) | 2017.05.31 |
---|---|
이스케리프 문자 (0) | 2017.05.31 |
class (0) | 2017.05.30 |
헬로! 파이썬 프로그래밍 쉽고 재미있게 프로그래밍 배우기 (0) | 2015.10.26 |
유닉스 타임 변환 홈페이지 & 유닉스 타임 변환 사이트 (0) | 2015.10.17 |