From 97ac04ff6261c0849d0861b13367d5db01b55208 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Wed, 30 Jan 2019 08:41:05 +0100 Subject: [PATCH] Input function --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 24146ae..8e6969a 100644 --- a/README.md +++ b/README.md @@ -825,7 +825,9 @@ arguments = sys.argv[1:] ``` ### Input Function -**Reads a line from user input or pipe if present. The trailing newline gets stripped.** +* **Reads a line from user input or pipe if present.** +* **The trailing newline gets stripped.** +* **The prompt string is printed to standard output before reading input.** ```python = input(prompt=None)