We Recommend

Learning Python Learning Python
The authors of Learning Python show you enough essentials of the Python scripting language to enable you to begin solving problems right away, then reveal more powerful aspects of the language one at a time. This approach is sure to appeal to programmers and system administrators who have urgent problems and a preference for learning by semi-guided experimentation.


Posted By

ndegruchy on 07/11/06


Tagged

basic textmate python String


Versions (?)


Who likes this?

6 people have marked this snippet as a favorite

ndegruchy
Kobold
anayhk
theodoretherone
vali29
kevcow


Reverse String


Published in: Python 


Almost not worth having a function for...

  1. def reverseString(s):
  2. """Reverses a string given to it."""
  3. return s[::-1]

Report this snippet 

You need to login to post a comment.