python

超轻量级php框架startmvc

python字符串反转的四种方法详解

更新时间:2020-08-11 11:18:01 作者:startmvc
这篇文章主要介绍了python字符串反转的四种详解,文中通过示例代码介绍的非常详细,对大

这篇文章主要介绍了python字符串反转的四种详解,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下

1、用reduce函数方法


book = 'Python程序设计'
result = reduce(lambda x,y:y+x,book)
print(result)

2、字符串切割


book = 'Python程序设计'
print(book[::-1])

3、用reversed方法,把字符串变成列表反转后拼接


result = reversed(list(book))
print(''.join(result))

4、for循环


book = 'Python程序设计'
lenbook = len(book) - 1
result = ''
for index,value in enumerate(book):
 result += book[lenbook - index]
print(result)

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

python 字符串 反转