python字符串的翻轉實現的兩種方法
方法一:利用切片
str1="helloworld!"
print(str1[::-1])
方法二:利用reduce函數實現
fromfunctoolsimportreduce
str1="helloworld!"
print(reduce(lambdax,y:y+x,str1))
補充:判斷字符串是不是回文串
str1="123455"
deffun(string):
print("%s"%string==string[::-1]and"YES"or"NO")
if__name__=='__main__':
fun(str1)
以上就是python字符串的翻轉實現的兩種方法,希望能對大家有所幫助。更多Python學習教程請關注IT培訓機構:千鋒教育。