Python 字符串中的字符倒转

933次阅读  |  发布于5年以前

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

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

Copyright© 2013-2020

All Rights Reserved 京ICP备2023019179号-8