From 1a59ebefa8f5811d48b3388e076457bb028401c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Mon, 18 Feb 2019 21:29:09 +0100 Subject: [PATCH] Seek --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0478be5..dcd43eb 100644 --- a/README.md +++ b/README.md @@ -908,7 +908,7 @@ while True: .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