From 60fcfaf681ff66c6169cd3af9f1ed60f34bcc2e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Wed, 30 Jan 2019 07:01:42 +0100 Subject: [PATCH] System --- README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 8684755..a696b0d 100644 --- a/README.md +++ b/README.md @@ -846,15 +846,15 @@ while True: ``` #### Modes: -* `'r'` - read (default) -* `'w'` - write (truncate) -* `'x'` - write or fail if the file already exists -* `'a'` - append -* `'w+'` - read and write (truncate) -* `'r+'` - read and write from begining -* `'a+'` - read and write from end -* `'b'` - binary mode -* `'t'` - text mode (default) +* `'r' ` - Read (default) +* `'w' ` - Write (truncate) +* `'x' ` - Write or fail if the file already exists +* `'a' ` - Append +* `'w+'` - Read and write (truncate) +* `'r+'` - Read and write from begining +* `'a+'` - Read and write from end +* `'b' ` - Binary mode +* `'t' ` - Text mode (default) #### Read Text from File: ```python