「Python3入門」 File tell()メソッドのサンプル

pythonコード
#!/usr/bin/python3

# ファイルのオープン
fo = open(“sample.txt", “r+")
print (“ファイル名: “, fo.name)

line = fo.readline()
print (“読み込むデータ: %s" % (line))

# ファイル中における現在の位置を取得
pos = fo.tell()
print (“ファイル中の現在の位置: %d" % (pos))

# ファイルのクローズ
fo.close()

Python

Posted by arkgame