Python tutorials with source code, examples, guides, and tips and tricks for Windows and Linux development.
Just see the next source code:
>>> text='0123456789' >>> reverse_text=text[::-1] >>> print reverse_text 9876543210 >>>