> How would I convert something like: > abc = ["abcdef"] > into > abc = "abcdef" abc = abc[0] I think the str() function works on lists too. > What I'm actually trying to do is convert a file.readlines() into a > single string and then .split(" "). Is this possible? Use read() instead - it returns onre enormous string... Alan G.