# Python CodeRecipe|tell()の使い方
❮ Home ❮ File Methods
# tell()の例1
f = open("demofile.txt", "r")
print(f.tell())
# tell()の定義及び使い方
tell()関数は現在のファイルを返します。 ファイルストリーム内の位置。 ヒント:現在のファイル位置は、 seek()関数はを使用します。
# tell()の構文
file.tell()
# tell()の引数
###パラメータ値がありません。
その他の例
# tell()の例2
Return the current file position after reading the first line:
f = open("demofile.txt", "r")
print(f.readline())print(f.tell())
❮ Home ❮ File Methods