gpt4 book ai didi

python - 在python中反转字符串

转载 作者:太空宇宙 更新时间:2023-11-04 07:44:51 25 4
gpt4 key购买 nike

我想在一个字符串中找到一个回文。

mystring = "1234321"

为什么

mystring[3:7:-1] 

不行,但是

second = mystring[3:7]
reversed = second[::-1]

这个有用吗?

最佳答案

因为你必须告诉 python 以结束索引“开始”并以开始索引“结束”:

>>> "0123456789"[7:3:-1]
'7654'

关于python - 在python中反转字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10143848/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com