On 18 Oct 2006 00:20:50 -0700, Jia Lu <[EMAIL PROTECTED]> wrote:

> I want to get a string "2 3"
>
> >>> str(list[1:])
> '[2, 3]'
>
> How can I do that ?

' '.join(str(i) for i in list[1:])

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

Reply via email to