From d2c9a45f21848cc4b5dcb96124b2a5085e622399 Mon Sep 17 00:00:00 2001 From: JawnsenTrain <44305457+JawnsenTrain@users.noreply.github.com> Date: Sat, 5 Jan 2019 15:25:27 -0600 Subject: [PATCH] Added more info about the append method (#26478) * Added more info about the append method Added the detail that the method adds the argument to the end specifically. * Removed redundant point --- guide/english/python/lists/list-append-method/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/python/lists/list-append-method/index.md b/guide/english/python/lists/list-append-method/index.md index b8b3cd9243..24b6a8cac4 100644 --- a/guide/english/python/lists/list-append-method/index.md +++ b/guide/english/python/lists/list-append-method/index.md @@ -4,7 +4,7 @@ title: List Append Method ## List Append Method There are many methods for lists, you can explore all of them by typing `help(list)` in your python console. -One of them is the append function which, as the name says appends the argument given list. +One of them is the `append()` function which, as the name says, appends/adds the argument to the end of the given list. #### Example Usage