Python使用reduce实现字符串逆序

Posted Channing Lewis

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python使用reduce实现字符串逆序相关的知识,希望对你有一定的参考价值。

from functools import reduce

astr = '123'
print(reduce(lambda x, y: y + x, astr))

输出:

321

以上是关于Python使用reduce实现字符串逆序的主要内容,如果未能解决你的问题,请参考以下文章

Python 函数式编程(map reduce filter sorted)

python魔法方法__reduce__()的妙用

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

在 python 中使用 reduce() 序列化字符串

LintCode翻转字符串问题 - python实现

Python字符串切片与逆序