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