Reverse characters in a string
mystring = "a simple string" mystring = mystring[::-1] # mystring will become: 'gnirts elpmis a'