From ac950d80389a37db1fdf25dcebf075747fc76c5e Mon Sep 17 00:00:00 2001 From: PMB79 <44287599+PMB79@users.noreply.github.com> Date: Wed, 7 Nov 2018 22:22:00 +0000 Subject: [PATCH] Simplification of language to improve readability. (#22107) --- guide/english/python/lists/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/python/lists/index.md b/guide/english/python/lists/index.md index dfd77df2e2..31540a7a8c 100644 --- a/guide/english/python/lists/index.md +++ b/guide/english/python/lists/index.md @@ -70,7 +70,7 @@ _Unpacking lists for python-3_ 1 2 9 16 25 ``` _unpacking elements from the list to variables python-3_ - We can unpack the elements of the list, and assign to variables. + The elements of a list can be unpacked and assigned to variables. ``` >>> my_list = [2, 4, 6, 8] >>> a, b, c, d = my_list