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

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

by yororing 2024. 8. 9.

0 개요

  • 코드 분석 중 이 함수가 나와서 이에 대해 정리하고자 함

01 tell() 함수란

1. 정의 및 사용

2. 문법

  • f = file pointer 또는 file object
f.tell()

 

1) 반환값

  • 예시
    • 0

 

 

참조

  1. https://www.w3schools.com/python/ref_file_tell.asp#:~:text=The%20tell()%20method%20returns,with%20the%20seek()%20method.
  2. https://www.geeksforgeeks.org/python-tell-function/
  3.