繁体   English   中英

Python如何使用枚举和列表跳过第一(即零)迭代?

[英]Python how to skip the first (i.e. zero) iteration using enumerate and a list?

我有一个桌子对象。

我想检查第一行是否具有Test的值,在这种情况下,我需要对表中的每一行进行处理。

否则,如果第一行没有Test的值,则需要跳过该行,对第1行及以后的内容执行某些操作。

因为我既需要索引又需要行,所以我必须使用枚举,但是似乎我以一种凌乱的方式使用它。 在这里,我两次调用enumerate ,并两次检查索引是否为0 有更简洁的方法吗?

for i, r in enumerate(null_clipData.rows()):
    if r[0].val == 'Test':
        # Do something if the first row is Test
        for index, row in enumerate(null_clipData.rows()):
            if index == 0:
                continue # But do anything the first time (stay in this loop though)
            print(index, row)
        break # All through with test row

    if i == 0:
        continue # Don't do anything with the first row if the value was not Test

    print(i, r) # Do something with i and r

按照Kevin的建议,您可以单独处理第一个项目,然后继续循环:

rows = iter(null_clipData.rows())

firstRow = next(rows)
specialHandling = firstRow.val == 'Test'

for i, r in enumerate(rows, start=1):
    if specialHandling:
        # do something special with r
    else:
        # do the normal stuff with r

另外,您也可以将其放在一个循环中:

specialHandling = False # default case
for i, r in enumerate(null_clipData.rows()):
    if i == 0: # first item
        specialHandling = r == 'Test'
        continue

    if specialHandling:
        # do something special with r
    else:
        # do the normal stuff with r
rows=null_clipData.rows()
enumeration=enumerate(rows[1:])
if rows[0]=='Test':
    for idx,row in enumeration:
        print(idx,row)
else:
    for i,r in enumeration:
        print (i,r)

这样的事吗? 我建议您将两个不同的for循环分解为各自的函数,以使其更简洁。

刚注意到Poke的回答,那也是:)

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM