fix spelling issue in Python (#1683)

Fixing a spelling issue in the Python section.
This commit is contained in:
Ryan M 2021-09-18 09:45:51 -04:00 committed by GitHub
parent 1bf9823bea
commit 28c5f62de1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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)