📜  python 反转字符串 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:30.072000             🧑  作者: Mango

代码示例6
# Library
def solution(str):
    return ''.join(reversed(str)) 
  
# DIY with recursion
def solution(str): 
    if len(str) == 0: 
        return str
    else: 
        return solution(str[1:]) + str[0]