gpt4 book ai didi

python - 在 Python 中获取字符串的前 n 个字符的最佳方法

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

我需要获取 x 个字符的字符串的前 n 个字符,其中 n = x - len(endstring)endstring 可以包含从 0 到 x 的任意数量的字符。

除了:

string[:len(string) - len(endstring)]

?

要点是 len(string) 看起来有点多余,但考虑到 endstring 的 0 个字符,它似乎是“最平滑”的解决方案?

最佳答案

您可以改为执行 string[:-len(endstring) 或 None]

关于python - 在 Python 中获取字符串的前 n 个字符的最佳方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35273992/

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