Skip to content

Commit 4d383da

Browse files
authored
Update introduction.rst
1 parent d71e3bc commit 4d383da

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Doc/tutorial/introduction.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -436,9 +436,9 @@ through all other variables that refer to it.::
436436
>>> rgba = rgb
437437
>>> id(rgb) == id(rgba) # they reference the same object
438438
True
439-
>>> rgba.append("Alph")
439+
>>> rgba.append("Alpha")
440440
>>> rgb
441-
["Red", "Green", "Blue", "Alph"]
441+
["Red", "Green", "Blue", "Alpha"]
442442

443443
All slice operations return a new list containing the requested elements. This
444444
means that the following slice returns a

0 commit comments

Comments
 (0)