gpt4 book ai didi

Python获取字符串中的第x个单词

转载 作者:太空狗 更新时间:2023-10-29 17:36:08 25 4
gpt4 key购买 nike

我正在寻找一个包含脚本中第 4 个(或 5 个)单词的代码。我试过这个:

import re    
my_string = "the cat and this dog are in the garden"
a = my_string.split(' ', 1)[0]
b = my_string.split(' ', 1)[1]

但我不能接受超过 2 个字符串:

a = the
b = cat and this dog are in the garden

我想要:

a = the
b = cat
c = and
d = this
...

最佳答案

您可以在拆分创建的列表上使用切片符号:

my_string.split()[:4] # first 4 words
my_string.split()[:5] # first 5 words

注意这些是示例命令。您应该使用其中之一,而不是连续使用两者。

关于Python获取字符串中的第x个单词,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22767509/

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