From fd9e450ae68466ade7f2958c06c5ecd06d87ced4 Mon Sep 17 00:00:00 2001 From: tachoni <44578437+tachoni@users.noreply.github.com> Date: Sun, 14 Apr 2019 08:07:52 +0300 Subject: [PATCH] Fixed grammar on lines 7, 9 and 11 (#31795) --- guide/english/python/lists/list-append-method/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guide/english/python/lists/list-append-method/index.md b/guide/english/python/lists/list-append-method/index.md index b701323f7b..7c2f3a29be 100644 --- a/guide/english/python/lists/list-append-method/index.md +++ b/guide/english/python/lists/list-append-method/index.md @@ -6,14 +6,14 @@ title: 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/adds the argument to the end of the given list. -#### Example Usage +#### Example Usage: ```py words = ["I", "love", "Python"] words.append("very much") print(words) ``` -#### Output +#### Output: ``` ['I', 'love', 'Python', 'very much'] ```