Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to make a list with numbers 1-1000 in it. Obviously this would be annoying to write/read, so I'm attempting to make a list with a range in it. In python 2 it seems that some_list = range(1,1000) would have worked, but in python 3 the range is similar to the xrange of python 2? Can anyone provide some insight into this?

share|improve this question
3  
Just don't, why would you actually need an harcoded list of 1000 numbers from 1 to 1000? Use range whenever you should need such list. – Rik Poggi Jul 14 '12 at 0:46

3 Answers

You can just construct a list from the range object:

my_list=list(range(1,1001))

This is how you do it with generators in python2.x as well. Typically speaking, you probably don't need a list though since you can come by the value of my_list[i] more efficiently (i+1), and if you just need to iterate over it, you can just fall back on range.

share|improve this answer
2  
This is definitely the way to go, but a nitpick: this isn't really a "cast" – jterrace Jul 14 '12 at 1:03
@jterrace changed "cast" to "convert". You're right about it not being a cast... I don't really know what to call it exactly. – mgilson Jul 14 '12 at 1:21
1  
I would say "construct" or "build" (or possibly "materialise")- as you're not "converting" (as such) a generator to a list, you're creating a new list object from a data source which happens to be a generator... (but s'pose just splitting hairs and not 100% sure what I favour anyway) – Jon Clements Jul 14 '12 at 6:10
1  
My +1 for "construct" as it is consistent with other OO languages. The list(arg) is understood in other languages as calling a constructor of the list class. Actually, it is also the Python case. The debates whether the object is filled during the construction (as in the C++ case) or only during the first automatically called method (as in the Python __init__() method) cannot change the basic abstract idea. My view is that the list constructor takes the iterator and fills the list with the returned values. – pepr Jul 14 '12 at 15:51
@pepr -- Yeah, I agree. construct is probably the best word to use. One word of caution. It is not guaranteed that __init__ is called. (from the documentation of __new__ { docs.python.org/reference/datamodel.html#object.__new__ } ) "If __new__() does not return an instance of cls, then the new instance’s __init__() method will not be invoked." – mgilson Jul 14 '12 at 16:09

Actually, if you want 1-1000 (inclusive), use the range function with parameters 1 and 1001 (range(1, 1001)), because the range(start, end) function goes from start to (end-1), inclusive.

share|improve this answer

You really shouldn't need to use the numbers 1-1000 in a list. But if for some reason you really do need these numbers, then you could do:

[i for i in range(1000)]

List Comprehension in a nutshell:

The above list comprehension translates to:

nums = []
for i in range(1000):
    nums.append(i)

This is just the list comprehension syntax, though from 2.x. I know that this will work in python 3, but am not sure if there is an upgraded syntax as well

share|improve this answer
4  
Why comprehension? Just: list(range(1000)) – Rik Poggi Jul 14 '12 at 0:48
Thanks! Would you mind explaining why it's i for i in... instead of simply for i in? – TheHoplessNoob Jul 14 '12 at 0:50
I haven't worked with python3. So I'm not fully certain about how it works. I know comprehensions will work, but wasn't 100% on the casting. But if casting works, then you're right and your way is more pythonic. – inspectorG4dget Jul 14 '12 at 0:51
@inspectorG4dget: It's not "casting", it's calling the list() constructor with an iterable. The list() constructor knows how to create a new list when given any iterable object. – Greg Hewgill Jul 14 '12 at 0:53
1  
@inspectorG4dget: list(range(1000)) will work in python3 just like list(xrange(1000)) in python2 – Rik Poggi Jul 14 '12 at 0:55
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.