From 28c5f62de1645708acad9efb6dc63ebdd0fdbba4 Mon Sep 17 00:00:00 2001 From: Ryan M <46380964+anarchylimes@users.noreply.github.com> Date: Sat, 18 Sep 2021 09:45:51 -0400 Subject: [PATCH] fix spelling issue in Python (#1683) Fixing a spelling issue in the Python section. --- python.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python.md b/python.md index 813a88801..222cc6b15 100644 --- a/python.md +++ b/python.md @@ -126,7 +126,7 @@ file.close() ```py print(file.read()) # read the entire file and set the cursor at the end of file print file.readline() # Reading one line -file.seek(0, 0) # place the cursor at the beggining of the file +file.seek(0, 0) # place the cursor at the beginning of the file ``` ### Writing (overwrite)