gpt4 book ai didi

Python检查字符串是否包含Python中的所有单词

转载 作者:太空宇宙 更新时间:2023-11-04 07:36:01 28 4
gpt4 key购买 nike

我想检查是否在没有任何循环或迭代的情况下在另一个字符串中找到了所有单词:

a = ['god', 'this', 'a']

sentence = "this is a god damn sentence in python"

all(a in sentence)

应该返回 TRUE

最佳答案

您可以根据您的具体需要使用一组,如下所示:

a = ['god', 'this', 'a']
sentence = "this is a god damn sentence in python"

print set(a) <= set(sentence.split())

这将打印 True , 其中<= issubset .

关于Python检查字符串是否包含Python中的所有单词,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35317649/

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