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?
|
|
You can just construct a list from the range object:
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 |
|||||||||||||||||
|
|
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. |
|||
|
|
|
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:
List Comprehension in a nutshell: The above list comprehension translates to:
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 |
|||||||||||||||
|