Skip to content

Commit b7a24f1

Browse files
committed
System
1 parent 60fcfaf commit b7a24f1

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -846,15 +846,15 @@ while True:
846846
```
847847

848848
#### Modes:
849-
* `'r' ` - Read (default)
850-
* `'w' ` - Write (truncate)
851-
* `'x' ` - Write or fail if the file already exists
852-
* `'a' ` - Append
853-
* `'w+'` - Read and write (truncate)
854-
* `'r+'` - Read and write from begining
855-
* `'a+'` - Read and write from end
856-
* `'b' ` - Binary mode
857-
* `'t' ` - Text mode (default)
849+
* `'r'` - read (default)
850+
* `'w'` - write (truncate)
851+
* `'x'` - write or fail if the file already exists
852+
* `'a'` - append
853+
* `'w+'` - read and write (truncate)
854+
* `'r+'` - read and write from begining
855+
* `'a+'` - read and write from end
856+
* `'b'` - binary mode
857+
* `'t'` - text mode (default)
858858

859859
#### Read Text from File:
860860
```python

0 commit comments

Comments
 (0)