Export elements of an array into variables using Python (unpacking)

不言
Release: 2018-04-27 15:32:39
Original
2444 people have browsed it

Below I will share with you an article using Python to export the elements of an array into variables (unpacking). It has a good reference value and I hope it will be helpful to everyone. Let’s take a look together

I recently encountered a problem at work. I need to use Python to export the elements in an array (list) or tuple (tuple) to N variables. Now I will share the method I implemented. For everyone, friends in need can refer to it. Let’s take a look below.

Solved problem

Needs to export the elements in an array (list) or tuple (tuple) to N variables.

Solution

Any sequence can assign its elements to the corresponding variables through simple variable assignment. The only requirement is that the number and structure of the variables need to be exactly the same as the structure in the sequence.

p = (1, 2)
x, y = p
# x = 1
# y = 2
data = ['google', 100.1, (2016, 5, 31)]
name, price, date = data
# name = 'google'
# price = 100.1
# date = (2016, 5, 31)
name, price, (year, month, day) = data
# name = 'google'
# price = 100.1
# year = 2016
# month = 5
# day = 31
Copy after login

If the variable structure and element structure are inconsistent, you will encounter the following error:

p = (1, 2)
x, y, z = p

Traceback (most recent call last):
 File "<pyshell#12>", line 1, in <module>
  x, y, z = p
ValueError: not enough values to unpack (expected 3, got 2)
Copy after login

In fact, such operations are not limited to tuples and arrays, but can also be used in strings. Unpacking supports most of our common sequences, such as file iteration, various generators, etc.

s = &#39;Hello&#39;
a,b,c,d,e = s
# a = &#39;H&#39;
# b = &#39;e&#39;
Copy after login

If you want to lose some elements during the export process, Python does not actually support such syntax, but you can specify some uncommon variables to achieve your goal the goal of.

data = [&#39;google&#39;, 100.1, (2016, 5, 31)]
name, _, (_,month,_) = data
# name = &#39;google&#39;
# month = &#39;5&#39;
# other fileds will be discarded
Copy after login

The above is the detailed content of Export elements of an array into variables using Python (unpacking). For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!