您现在的位置是:课程教程文章

python字符串的翻转实现的两种方法

2023-12-14 22:24课程教程文章 人已围观

python字符串的翻转实现的两种方法 

方法一:利用切片

str1 = "hello world!"
print(str1[::-1])

方法二:利用reduce函数实现

from functools import reduce
str1 = "hello world!"
print(reduce(lambda  x, y : y+x, str1))

补充:判断字符串是不是回文串

str1 = "123455"
def fun(string):
    print("%s" % string == string[::-1] and "YES" or "NO")
if __name__ == '__main__':
    fun(str1)
课程教程:python字符串的翻转实现的两种方法

上一篇:Python中json模块有哪些函数

下一篇:没有了

站点信息

  • 文章统计篇文章