Ben wrote: > Using Fredericks advice I managed to track down the problem - it was > really very stupid. I had accidentally cast the list to a string
There's nothing like "type casting" in Python. You did not "cast the list to a string", you created a string from a list. -- bruno desthuilliers python -c "print '@'.join(['.'.join([w[::-1] for w in p.split('.')]) for p in '[EMAIL PROTECTED]'.split('@')])" -- http://mail.python.org/mailman/listinfo/python-list