使用Python查找单词在句子中的位置可以通过以下步骤实现:
以下是一个示例代码:
def find_word_positions(sentence, word):
words = sentence.split()
positions = []
for index, w in enumerate(words):
if w == word:
positions.append(index)
return positions
sentence = "I love Python, Python is a powerful programming language."
word = "Python"
positions = find_word_positions(sentence, word)
print("The word '{}' appears at positions: {}".format(word, positions))
输出结果为:
The word 'Python' appears at positions: [1, 4]
在这个例子中,我们将句子拆分成单词列表,然后遍历列表,判断每个单词是否与要查找的单词相同。如果相同,则将该单词的索引添加到结果列表中。最后返回结果列表,即为要查找的单词在句子中的位置。
推荐的腾讯云相关产品:无
希望以上信息对您有所帮助!
腾讯位置服务技术沙龙
云+社区技术沙龙[第7期]
技术创作101训练营
云+社区技术沙龙[第27期]
云原生正发声
北极星训练营
企业创新在线学堂
云+社区技术沙龙[第17期]
北极星训练营
领取专属 10元无门槛券
手把手带您无忧上云