脚本专栏 
首页 > 脚本专栏 > 浏览文章

Python 字符串中的字符倒转

(编辑:jimmy 日期: 2025/1/10 浏览:3 次 )
方法一,使用[::-1]:
s = 'python'
print s[::-1]

方法二,使用reverse()方法:
l = list(s)
l.reverse()
print ''.join(l)
输出结果:
nohtyp
nohtyp
上一篇:rhythmbox中文名乱码问题解决方法
下一篇:Python备份Mysql脚本