当前位置:Gxlcms > Python > python字符串反转

python字符串反转

时间:2021-07-01 10:21:17 帮助过:59人阅读

str类型python并没有reverse函数。

然而,通过反向步进切片,我们可以高效地反转一串字符串。

仅支持英文字符。

例:

1 a = 'example'
2 b = a[::-1]
3 print(b)
4 #
输出结果'elpmaxe'

 

以上就是python字符串反转的详细内容,更多请关注Gxl网其它相关文章!

人气教程排行