ไฟล์ Python ค้นหา () Method
ตัวอย่าง
เปลี่ยนตำแหน่งไฟล์ปัจจุบันเป็น 4 และส่งคืนส่วนที่เหลือของบรรทัด:
f = open("demofile.txt", "r")
f.seek(4)
print(f.readline())
ความหมายและการใช้งาน
เมธอด กำหนดseek()
ตำแหน่งไฟล์ปัจจุบันในสตรีมไฟล์
วิธี การseek()
นี้ยังส่งคืนตำแหน่งใหม่
ไวยากรณ์
file.seek(offset)
ค่าพารามิเตอร์
Parameter | Description |
---|---|
offset | Required. A number representing the position to set the current file stream position. |
ตัวอย่างเพิ่มเติม
ตัวอย่าง
กลับตำแหน่งใหม่:
f = open("demofile.txt", "r")
print(f.seek(4))