枚举python

时间:2015-07-03 06:19:48

标签: python string enumerate

我有一个由两个句子组成的字符串元组

a = ('What', 'happened', 'then', '?', 'What', 'would', 'you', 'like', 'to', 'drink','?')

我试过这个

for i,j in enumerate(a):
print i,j

给出了

0 What
1 happened
2 then
3 ?
4 What
5 would
6 you
7 like
8 to
9 drink
10 ?

而我需要的是这个

0 What
1 happened
2 then
3 ?
0 What
1 would
2 you
3 like
4 to
5 drink
6?

3 个答案:

答案 0 :(得分:7)

最简单的方法是手动增加i而不是依赖enumerate并重置字符?.!上的计数器。< / p>

i = 0
for word in sentence:
    print i, word

    if word in ('.', '?', '!'):
        i = 0
    else:
        i += 1

答案 1 :(得分:1)

可能过于复杂。我认为@JeromeJ的解决方案更清晰。但是:

a=('What', 'happened', 'then', '?', 'What', 'would', 'you', 'like', 'to', 'drink','?')
start = 0
try: end = a.index('?', start)+1
except: end = 0

while a[start:end]:
    for i,j in enumerate(a[start:end]):
        print i,j
    start = end
    try: end = a.index('?', start)+1
    except: end = 0

答案 2 :(得分:1)

还有一个:

from itertools import chain

for n,c in chain(enumerate(a[:a.index('?')+1]), enumerate(a[a.index('?')+1:])):
    print "{} {}".format(n,i)
   ....:
0 What
1 happened
2 then
3 ?
0 What
1 would
2 you
3 like
4 to
5 drink
6 ?