On Wed, Oct 12, 2011 at 12:49 AM, Nick Zarr <jacktradespub...@gmail.com> wrote:
>>>> range(1, 1000)
> [1, 2, ..., 999]
>

Or for Python 3 compat:

>>> list(range(1,1000))

ChrisA
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to