Simplification of language to improve readability. (#22107)

This commit is contained in:
PMB79
2018-11-07 22:22:00 +00:00
committed by Manish Giri
parent 62ca5f95c5
commit ac950d8038

View File

@ -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