Dick Moores wrote:
I have the feeling that I've either forgotten (or never knew) some basic Python built-in or something, but in case I haven't, what's the best way to convert a list of integers to a string?
I dunno about 'best', but here is one way to do it: ''.join(map(str, intList)) Perhaps faster using iterator.imap() instead of map(). Kent _______________________________________________ Tutor maillist - [email protected] http://mail.python.org/mailman/listinfo/tutor
