Python for循环仅每秒一次

时间:2016-03-05 10:33:06

标签: list python-2.7 for-loop

从未遇到过这样的问题而且不知道如何解决甚至称之为......

types = [105000, 105001, 105002, 105003, 105004, 105005, 105006, 105007]
for type in types:
    print type

仅打印

105000
105002
105004
105006

但我不知道为什么。

使用函数从输入中生成数组,如

self.arrSplit(105000,105001,105002,105003,105004,105005,105006,105007)

功能:

    def arrSplit(self, arr):
        itms = []
        for it in arr.split(','):
            tt = it.split('-')
            if (len(tt) >= 2 and int(tt[0]) < int(tt[1])):
                for i in range(int(tt[0]), int(tt[1])+1):
                    itms.append(i)
            else:
                itms.append(int(tt[0]))
        return itms

完成此代码看起来像这样(它是最小的)

types = self.arrSplit(105000,105001,105002,105003,105004,105005,105006,105007)
print types
for type in types:
print type

打印:

[105000, 105001, 105002, 105003, 105004, 105005, 105006, 105007]
105000
105002
105004
105006

1 个答案:

答案 0 :(得分:0)

对于for循环,你应该使用它:

types = [105000, 105001, 105002, 105003, 105004, 105005, 105006, 105007]
for numbers in types:
    print numbers

这对我有用,但我不能解释为什么它只打印平均值。