diff --git a/README.md b/README.md index 0dfe676..ad916cc 100644 --- a/README.md +++ b/README.md @@ -897,6 +897,13 @@ while True: * **`'t'` - Text mode (default).** * **`'b'` - Binary mode.** +#### Seek: +```python +.seek(0) # Move to start of the file. +.seek(offset) # Move 'offset' chars/bytes from the start. +.seek(offset, ) # Anchor: 0 start, 1 current pos., 2 end. +```` + #### Read Text from File: ```python def read_file(filename):