在Python中构建列表时自动增量

时间:2010-08-12 19:13:43

标签: python list

这是我到目前为止所拥有的。无论如何,我可以在构建列表时自动增加列表吗?所以我没有拥有所有的,而是拥有1,2,3,4 ....

possible = []
possible = [1] * 100
print possible

谢谢, 诺亚

2 个答案:

答案 0 :(得分:13)

possible = range(1, 101)

请注意,结束点(本例中为101)是结果列表的部分。

答案 1 :(得分:0)

这样的东西?

start=1
count= 100
possible = [num for num in range(start,start+count)]
print possible