如何从Python列表中打印每个第4项?

时间:2013-10-24 01:56:56

标签: python

如何打印列表中的每个第四项?

list = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm']

3 个答案:

答案 0 :(得分:8)

使用切片:

fourth_items = list[3::4] # ['d', 'h', 'l']
for i in fourth_items: print i

答案 1 :(得分:0)

为什么不循环,每次迭代增加4。您可以使用len(list)

在python中获取数组的长度
index = 0 #or start at 3, pending on where you want to start
while index < len(list) :
    print list[index]
    index +=4

答案 2 :(得分:0)

感谢Nirks的评论,我更正了我的答案。 列表是python中的内置函数,不建议将其用作变量名,我将其更改为list_test。

list_test = list('abcdefghijklm')
tmp = list_test[3::4]

这是不同的部分

按正常顺序打印:

for i in tmp: print i

按相反顺序打印:

while tmp: print tmp.pop()