s = list('some_random_string')
print s
s.reverse()
print s
s = ''.join(s)
print sSurely there's a better way to do this, right? -- http://mail.python.org/mailman/listinfo/python-list
s = list('some_random_string')
print s
s.reverse()
print s
s = ''.join(s)
print sSurely there's a better way to do this, right? -- http://mail.python.org/mailman/listinfo/python-list