본문 바로가기
Python/기본문법

f.seek() (파이썬 파일 처리 함수)

by yororing 2024. 8. 9.

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

 

 

참조

  1. https://www.w3schools.com/python/ref_file_seek.asp
  2. https://www.geeksforgeeks.org/python-seek-function/
  3.  
  4.