78

我偶然发现了以下代码:

for i, a in enumerate(attributes):
   labels.append(Label(root, text = a, justify = LEFT).grid(sticky = W))
   e = Entry(root)
   e.grid(column=1, row=i)
   entries.append(e)
   entries[i].insert(INSERT,"text to insert")

我不明白这i, a一点,在谷歌上搜索相关信息for是一件很痛苦的事情。当我尝试使用代码时,我得到了错误:

ValueError:需要超过 1 个值才能解压

有谁知道它的作用,或者与它相关的更具体的术语,我可以通过谷歌了解更多信息?

4

8 回答 8

143

你可以谷歌“元组解包”。这可以在 Python 的各个地方使用。最简单的就是赋值:

>>> x = (1,2)
>>> a, b = x
>>> a
1
>>> b
2

在 for 循环中,它的工作方式类似。如果 iterable 的每个元素都是 a tuple,那么你可以指定两个变量,循环中的每个元素都会被解包为这两个变量。

>>> x = [(1,2), (3,4), (5,6)]
>>> for item in x:
...     print "A tuple", item
A tuple (1, 2)
A tuple (3, 4)
A tuple (5, 6)
>>> for a, b in x:
...     print "First", a, "then", b
First 1 then 2
First 3 then 4
First 5 then 6

enumerate函数创建一个可迭代的元组,因此可以这样使用。

于 2012-06-03T04:27:54.160 回答
24

Enumerate 基本上为您提供了一个在 for 循环中使用的索引。所以:

for i,a in enumerate([4, 5, 6, 7]):
    print i, ": ", a

将打印:

0: 4
1: 5
2: 6
3: 7
于 2012-06-03T04:29:13.017 回答
6

以这段代码为例:

elements = ['a', 'b', 'c', 'd', 'e']
index = 0

for element in elements:
  print element, index
  index += 1

您循环遍历列表并存储索引变量。enumerate()做同样的事情,但更简洁:

elements = ['a', 'b', 'c', 'd', 'e']

for index, element in enumerate(elements):
  print element, index

index, element符号是必需的,因为enumerate返回一个元组 ( (1, 'a'), (2, 'b'), ...),该元组被解压缩为两个不同的变量。

于 2012-06-03T04:29:25.077 回答
6
[i for i in enumerate(['a','b','c'])]

结果:

[(0, 'a'), (1, 'b'), (2, 'c')]
于 2012-06-03T07:11:28.553 回答
5

您可以将该for index,value方法与使用( ). 这在您想在循环中设置几个相关值时很有用,这些值可以在没有中间元组变量或字典的情况下表示,例如

users = [
    ('alice', 'alice@example.com', 'dog'),
    ('bob', 'bob@example.com', 'cat'),
    ('fred', 'fred@example.com', 'parrot'),
]

for index, (name, addr, pet) in enumerate(users):
    print(index, name, addr, pet)

印刷

0 alice alice@example.com dog
1 bob bob@example.com cat
2 fred fred@example.com parrot
于 2021-04-12T15:38:00.797 回答
2

该函数返回一个生成器对象,该对象在每次迭代时enumerate生成一个包含元素索引的元组(生成元组并为它们分配变量名称。i0afor

于 2012-06-03T04:28:56.963 回答
2

简短的回答,从 for 循环中的列表中解包元组是可行的。enumerate() 使用当前索引和整个当前项创建一个元组,例如 (0, ('bob', 3))

我创建了一些测试代码来证明这一点:

    list = [('bob', 3), ('alice', 0), ('john', 5), ('chris', 4), ('alex', 2)]

    print("Displaying Enumerated List")
    for name, num in enumerate(list):
        print("{0}: {1}".format(name, num))

    print("Display Normal Iteration though List")
    for name, num in list:
        print("{0}: {1}".format(name, num))

元组解包的简单性可能是我对 Python 最喜欢的事情之一:D

于 2019-02-13T12:06:58.323 回答
0
let's get it through with an example:
list = [chips, drinks, and, some, coding]
  i = 0
  while i < len(list):
               
           if i % 2 != 0:
                print(i)
                  i+=1
       output:[drinks,some]

    now using EMUNERATE fuction:(precise)
   list = [chips, drinks, and, coding]
for index,items in enumerate(list):
            
             print(index,":",items)
OUTPUT:   0:drinks
          1:chips
          2:drinks
          3:and
          4:coding

                          


                         
于 2022-01-26T06:48:46.453 回答