Python 字符串中的字符倒转

脚本专栏 发布日期:2025/1/12 浏览次数:1

正在浏览:Python 字符串中的字符倒转
方法一,使用[::-1]:
s = 'python'
print s[::-1]

方法二,使用reverse()方法:
l = list(s)
l.reverse()
print ''.join(l)
输出结果:
nohtyp
nohtyp