Peter Otten <[EMAIL PROTECTED]> writes: > >>> print reversed("abba") > <reversed object at 0x4029454c>
Darn, yes, that's the second time in the past couple weeks I've made that exact same error in a clpy post. So what's the most concise way of turning it back into a string? ''.join(list(reversed(a_string))) ? Bleccch. -- http://mail.python.org/mailman/listinfo/python-list