python 字符串反转的几种方法

Posted fuxuhao

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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 字符串反转的几种方法的主要内容,如果未能解决你的问题,请参考以下文章

Python实现字符串反转的几种方法

[转]Python实现字符串反转的几种方法

python 实现字符串反转的几种方法

面试题总结2反转字符串的几种形式

python反转列表的几种方法

swift 在Swift中反转字符串的几种方法