gpt4 book ai didi

python - 如何通过索引从字符串中获取字符?

转载 作者:IT老高 更新时间:2023-10-28 21:32:03 27 4
gpt4 key购买 nike

假设我有一个由 x 个未知字符组成的字符串。我怎么能得到char nr。 13 或 char nr。 x-14?

最佳答案

首先确保所需的数字是从开头或结尾的字符串的有效索引,然后您可以简单地使用数组下标表示法。使用 len(s) 获取字符串长度

>>> s = "python"
>>> s[3]
'h'
>>> s[6]
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
IndexError: string index out of range
>>> s[0]
'p'
>>> s[-1]
'n'
>>> s[-6]
'p'
>>> s[-7]
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
IndexError: string index out of range
>>>

关于python - 如何通过索引从字符串中获取字符?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8848294/

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