From 308d5db5868c47bfed3a67dd8db44421f0f84afe Mon Sep 17 00:00:00 2001 From: himanshu07070 <36814920+himanshu07070@users.noreply.github.com> Date: Sat, 19 Jan 2019 06:32:24 +0530 Subject: [PATCH] changes in the output (#30099) ['I', 'love', 'Python', 'very much'] instead of double quotes , it should be single quote. --- 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 24b6a8cac4..b701323f7b 100644 --- a/guide/english/python/lists/list-append-method/index.md +++ b/guide/english/python/lists/list-append-method/index.md @@ -15,7 +15,7 @@ print(words) ``` #### Output ``` -["I", "love", "Python", "very much"] +['I', 'love', 'Python', 'very much'] ``` As you might have noticed the element `"very much"` is appended to the list.