hollowspook wrote:

> how about indexing 1-7, 10
> [range(1:8),10] will generate [[1, 2, 3, 4, 5, 6, 7], 10], instead of
> [1, 2, 3, 4, 5, 6, 7, 10]

>>> range(1,8)+[10]
[1, 2, 3, 4, 5, 6, 7, 10]

-- 
Under construction
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to