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

python学习之巧妙字符串反转

时间:2014-11-10 21:22:27      阅读:210      评论:0      收藏:0      [点我收藏+]

标签:style   使用   sp   on   bs   ef   as   python   学习   

字符串反转是一个最常见的面试题,写法也很多种,下面给2家介绍2种,一种是常规写法,一种是巧妙写法:

题目:完成字符串abcd反转.

方法1:比较容易想到的想法,利用list
def reversestr(string):    
     strlist=[]     
     i=len(string)-1     
     while(i>=0):         
         strlist.append(string[i])         
          i-=1     
    return ‘‘.join(strlist)

方法2:如果你对python足够熟悉,可以使用字符串切片来完成,只需一句话。

string[::-1]

 

更多资料关注:www.kootest.com ;技术交流群:182526995

python学习之巧妙字符串反转

标签:style   使用   sp   on   bs   ef   as   python   学习   

原文地址:http://www.cnblogs.com/kootest/p/4088044.html

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