python實現字符串反轉

輸入:s = ‘happying’ 輸出:s = ‘gniyppah’ 方法1web #使用字符串切片 r = s [::-1] 方法2app #使用reduce r = reduce(lambda x,y:y+x,s) 方法3svg #使用遞歸函數 #字符串s的倒序是,是s除去第一個字符的字符串的倒序加上第一個字符 def func(s): if len(s) < 1: return
相關文章
相關標籤/搜索