250x250
반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 비밀번호변경
- Git
- 나만의주식5법칙
- php
- 성선택
- 중용
- 꼭읽어봐야할책
- 독후감
- 공작과개미
- todolist
- delete
- db
- Django
- 헬레나크로닌
- Python
- 네인생우습지않다
- 지방사람이보는서울사람
- linux명령어
- git 업로드
- MySQL
- 옹졸함
- 클라우드
- Face Detection
- 일일투자금액
- OpenCV
- 훌륭한모국어
- 서울로가자
- ChatGPT
- 다산의마지막습관
- UPSERT
Archives
- Today
- Total
Terry Very Good
[Python] 파일 읽고 쓰기(open, write, read, tell, seek) 본문
728x90
반응형
# 파일 쓰기
with open('filetest.txt', 'w') as fo:
fo.write('hi hello \nhi python\nhi django')
# Window에서 파일 출력
!type filetest.txt
# Linux에서 파일 출력
!cat filetest.txt
결과:
hi hello
hi python
hi django
with open('filetest.txt') as fi:
s1 = fi.read(5) #파일을 5바이트 읽는다
print(fi.tell()) #현재 파일포인터의 위치를 알 수 있지요
s2 = fi.read(3) #파일을 3바이트 더 읽는다
print(fi.tell()) #현재 파일포인터의 위치를 알 수 있지요
fi.seek(0) #파일의 처음위치로 파일포인터가 이동합니다.
s3 = fi.read()
print('s1 = ',s1)
print('s2 = ',s2)
print('s3 = ',s3)
결과:
5
8
s1 = hi he
s2 = llo
s3 = hi hello hi
python hi django
import os
# Path
path = os.getcwd()
BASE_DIR = os.path.join(path, 'test')
if not os.path.exists(BASE_DIR):
os.mkdir(BASE_DIR)
filepath = os.path.join(BASE_DIR, 'filetest.txt')
with open(filepath, 'w') as fo:
fo.write('hi hello \nhi python \nhi django')
print(filepath)
with open(filepath) as fi:
s1 = fi.read()
print(s1)
결과:
D:\Anaconda3\envs\djangoenv\workshop\test\filetest.txt
hi hello
hi python
hi django
728x90
반응형
'프로그래밍 > PYTHON' 카테고리의 다른 글
[Python] pandas를 이용한 엑셀 xlsx 파일을 df 데이터프레임으로 가져오는 함수(pd.read_excel 사용) (0) | 2021.10.01 |
---|---|
[Python] main 모듈과 def 함수 활용한 모듈형 코드를 자산화하는 기초 (0) | 2021.09.28 |
[Python] 함수 사용법 (0) | 2021.06.15 |
[Python] 문자열에서 중복된 문자 or 단어 카운트 (0) | 2021.06.15 |
pickle / joblib 를 사용한 머신러닝 모델 저장하는 법 (0) | 2021.06.07 |