Converting a List into a String

blah@blah.blah blahman
Sat Nov 5 05:41:03 EST 2005


I have a List

list = ['f', 'e', 'd', 'c', 'b', 'a']

How can i convert it into a string so the output is

fedcba

i used

for a in list:
      print a,

the output is 

f e d c b a

How can i remove the spaces b/w each letter?
-- 
 * Posted with NewsLeecher v3.0 Beta 7
 * http://www.newsleecher.com/?usenet



More information about the Python-list mailing list