[EMAIL PROTECTED] wrote:
> list = ['f', 'e', 'd', 'c', 'b', 'a']
> 
> How can i convert it into a string so the output is
> 
> fedcba

print ''.join(list)
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to