#strrev(sStr1) sStr1 = 'abcdefg' sStr1 = sStr1[::-1] print sStr1
字符串 [::-1] 出现string取反,string[:] 取全部,string[:-1] 取所有