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.