码迷,mamicode.com
首页 > 编程语言 > 详细

python字符串的反转

时间:2020-06-10 14:43:56      阅读:79      评论:0      收藏:0      [点我收藏+]

标签:lambda   port   fun   方法   rev   class   tool   from   rom   

 1 name="felix"
 2 #方法一:
 3 name=name[::-1]
 4 #方法二:
 5 name2=list(name)
 6 name2.reverse()
 7 name=‘‘.join(name2)
 8 #方法三:
 9 from funtools import reduce
10 name = reduce(lambda x,y:y+x,name)

 

python字符串的反转

标签:lambda   port   fun   方法   rev   class   tool   from   rom   

原文地址:https://www.cnblogs.com/Yanss/p/13084935.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!