Python 字符串中的字符倒转_python教程-查字典教程网
Python 字符串中的字符倒转
Python 字符串中的字符倒转
发布时间:2016-12-28 来源:查字典编辑
摘要:方法一,使用[::-1]:s='python'prints[::-1]方法二,使用reverse()方法:l=list(s)l.revers...

方法一,使用[::-1]:

s = 'python'

print s[::-1]

方法二,使用reverse()方法:

l = list(s)

l.reverse()

print ''.join(l)

输出结果:

nohtyp

nohtyp

相关阅读
推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
  • 大家都在看
  • 小编推荐
  • 猜你喜欢
  • 最新python学习
    热门python学习
    脚本专栏子分类