Archive for the ‘Python’ Category

Simple string reverse in pyton

Monday, November 16th, 2009

How to reverse a string?

s = ‘abc’
s = s[::-1]
print s

Simple!

VN:F [1.1.7_509]
Rating: 8.0/10 (1 vote cast)