gpt4 book ai didi

python - 在不使用 len() 的情况下切片到字符串的末尾

转载 作者:IT老高 更新时间:2023-10-28 20:23:47 26 4
gpt4 key购买 nike

使用字符串索引,有没有办法在不使用 len() 的情况下切片到字符串的末尾?

负索引从末尾开始,但 [-1] 省略了最后一个字符。

word = "Help"
word[1:-1] # But I want to grab up to end of string!
word[1:len(word)] # Works but is there anything better?

最佳答案

您可以尝试使用:

word[1:]

关于python - 在不使用 len() 的情况下切片到字符串的末尾,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9757277/

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