Is a blog about python programming language. You can see my work with python programming language, tutorials and news.
Just see the next source code:
>>> text='0123456789' >>> reverse_text=text[::-1] >>> print reverse_text 9876543210 >>>