当前位置:主页 > 软件编程 > Python代码 >

Python 字符串中的字符倒转

时间:2023-03-09 12:09:27 | 栏目:Python代码 | 点击:

方法一,使用[::-1]:
s = 'python'
print s[::-1]

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

您可能感兴趣的文章:

相关文章