00 개요
- 코드 분석 중 이 함수가 나와서 이에 대해 정리하고자 함
01 seek() 함수란
1. 정의 및 사용
- 파일을 다룰 때 사용됨
- sets the current file position in a file stream + 새로운 position 반환
2. 문법
- f = file pointer 또는 file object
f.seek(offset[, from_what])
1) 매개변수
- offset (필수값):
- A number representing the position to set the current file stream position
- 양수는 뒷쪽으로 (오른쪽으로), 음수는 앞쪽으로 (왼쪽으로) 이동
- from_what:
- the point of reference
- 기본값 = 0
- 종류:
- 0: sets the reference point at the beginning of the file
- 1: sets the reference point at the current file position
- 2: sets the reference point at the end of the file
참조
'Python > 기본문법' 카테고리의 다른 글
Decimal (파이썬 데이터 타입) (0) | 2024.09.02 |
---|---|
f.tell() (파이썬 파일 처리 함수) (0) | 2024.08.09 |
위치 인수, 키워드 인수 (파이썬 함수의 인수 종류) (0) | 2024.08.04 |
pass continue break 차이 (파이썬 문법) (0) | 2024.08.01 |
namedtuple (파이썬 자료형) (0) | 2024.07.31 |