python 字符串的反转

 

def string_reverse(str1):
    rstr1 = ''  
    index = len(str1)  
    while index > 0:  
        rstr1 += str1[ index - 1 ]  
        index = index - 1  
    return rstr1  
print(string_reverse('1234abcd'))

 

posted @ 2018-11-16 20:20  anobscureretreat  阅读(145)  评论(0编辑  收藏  举报