From 4d383dafab19b8e636830f87005828a930640a1e Mon Sep 17 00:00:00 2001 From: Arash Atashrooz Date: Wed, 29 Apr 2026 09:55:07 +0330 Subject: [PATCH] Update introduction.rst --- Doc/tutorial/introduction.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/tutorial/introduction.rst b/Doc/tutorial/introduction.rst index 7778e37a9adaa9..ead19f9319a261 100644 --- a/Doc/tutorial/introduction.rst +++ b/Doc/tutorial/introduction.rst @@ -436,9 +436,9 @@ through all other variables that refer to it.:: >>> rgba = rgb >>> id(rgb) == id(rgba) # they reference the same object True - >>> rgba.append("Alph") + >>> rgba.append("Alpha") >>> rgb - ["Red", "Green", "Blue", "Alph"] + ["Red", "Green", "Blue", "Alpha"] All slice operations return a new list containing the requested elements. This means that the following slice returns a