From 44ab261f60abc78cbc47c00aa49ec47c5ad5f974 Mon Sep 17 00:00:00 2001 From: Hamza-CS50 Date: Fri, 30 Jan 2026 22:45:00 -0800 Subject: [PATCH] Clarify tutorial wording for beginners This change slightly clarifies wording in the tutorial to make it easier for beginners to understand which parts of the examples they should type into the interpreter. --- Doc/tutorial/introduction.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/tutorial/introduction.rst b/Doc/tutorial/introduction.rst index deabac5253051c..c4a6eeab239850 100644 --- a/Doc/tutorial/introduction.rst +++ b/Doc/tutorial/introduction.rst @@ -6,7 +6,7 @@ An Informal Introduction to Python In the following examples, input and output are distinguished by the presence or absence of prompts (:term:`>>>` and :term:`...`): to repeat the example, you must type -everything after the prompt, when the prompt appears; lines that do not begin +everything shown after the prompt, when the prompt appears; lines that do not begin with a prompt are output from the interpreter. Note that a secondary prompt on a line by itself in an example means you must type a blank line; this is used to end a multi-line command.