首页 > 编程 > Python > 正文

Python 字符串中的字符倒转

2019-11-25 18:46:34
字体:
来源:转载
供稿:网友
方法一,使用[::-1]:
s = 'python'
print s[::-1]

方法二,使用reverse()方法:
l = list(s)
l.reverse()
print ''.join(l)
输出结果:
nohtyp
nohtyp
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表