Tempo wrote: > Okay, so it sounds like I am in the right direction. However, I am not > sure that the text is in a string or some other format becasue the > string is enclosed in "[" and "]", not in ' '. > In case you have it like ['the string'], the actual string will be: ['the string'][0]. Just use IDLE to test your ideas:
>>> ['the string'][0] 'the string' >>> Claudio Grondi -- http://mail.python.org/mailman/listinfo/python-list