gpt4 book ai didi

python - 如何检查子字符串是否包含 "apple"中的所有字母

转载 作者:行者123 更新时间:2023-11-28 21:39:14 26 4
gpt4 key购买 nike

如果我有字符串“axplpett”,我想返回 true,因为它的子字符串“axplpe”包含 apple 的所有字母。

本来想用set方法,但是apple有重复字符。

最佳答案

就这个?

string = "axplpett"
test = "apple"
all(string.count(l) >= test.count(l) for l in test)

关于python - 如何检查子字符串是否包含 "apple"中的所有字母,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47130632/

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