File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -846,15 +846,15 @@ while True:
846
846
```
847
847
848
848
#### 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)
858
858
859
859
#### Read Text from File:
860
860
``` python
You can’t perform that action at this time.
0 commit comments