Published in: Python
Almost not worth having a function for...
def reverseString(s): """Reverses a string given to it.""" return s[::-1]
You need to login to post a comment.
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.
ndegruchy on 07/11/06
6 people have marked this snippet as a favorite
ndegruchy
Kobold
anayhk
theodoretherone
vali29
kevcow
Published in: Python
Almost not worth having a function for...
def reverseString(s): """Reverses a string given to it.""" return s[::-1]
You need to login to post a comment.