gpt4 book ai didi

Python:获取列表的索引

转载 作者:行者123 更新时间:2023-12-01 02:36:25 26 4
gpt4 key购买 nike

我正在尝试创建一个程序,该程序将输入一个句子和一个单词,并检查该句子中的单词并返回单词开头的索引即

sentence = "random set of words" 
word = "of"
result = 9

这是我尝试过的

sentence = (input("Enter a sentence: "))
word = (input("Enter a Word: "))

result = sentence.split()

for x in sentence:
if x == (word):
boom = enumerate(word)
print(boom)

最佳答案

只需使用索引()

a =“aa bb cc”

b =“bb”

打印a.index(b)

如果OP希望它只计算字母:

a =“aa bb cc”

b =“bb”

index_t = a.index(b)

real_index = index_t - a[:index_t].count(' ')

关于Python:获取列表的索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46166612/

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