gpt4 book ai didi

python - 如何在 Python 的列表中获取字符串的位置?

转载 作者:行者123 更新时间:2023-12-04 00:12:52 25 4
gpt4 key购买 nike

我想在 Python 的列表中获取字符串的位置?我该怎么做?

比如用户提供一个句子“你好,我叫Dolfinwu”,我事先把整个句子变成了一个列表,我想在这里得到每个“o”的位置,我该怎么做?在这种情况下,第一个“o”的位置是“4”,第二个“o”的位置是“18”。但是很明显,用户会使用不同的词输入不同的句子,那么在这种不可预知的情况下,如何获取特定字符串值的位置呢?

我已经尝试过如下代码。我知道它包含语法错误,但我想不出更好的东西。

sentence = input('Please type a sentence: ')
space = ' '

for space in sentence:
if space in sentence:
space_position = sentence[space]
print(space_position)

最佳答案

这个怎么样?我昨天想出了另一个解决方案。

import re
sentence = input('Please type a sentence: ')
print([match.span()[0] for match in re.finditer(' ', sentence)])

关于python - 如何在 Python 的列表中获取字符串的位置?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67211643/

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