gpt4 book ai didi

python - 如何检查列表中是否有多个字符?

转载 作者:太空宇宙 更新时间:2023-11-03 14:07:10 25 4
gpt4 key购买 nike

我有一个组合列表(比如 5 位数的密码),并且只想使用其中包含 1,2 和 3 的组合。环顾四周,但出于某种原因似乎没有找到任何东西。

if 1 in combination and 2 in combination and 3 in combination:

这似乎可行,但我确信有更有效的方法,因为我的方法很丑。

最佳答案

如果 combination 是一个集合,您可以执行子集检查:

if {1, 2, 3} <= combination:

否则,您可以:

if all(x in combination for x in (1, 2, 3)):

关于python - 如何检查列表中是否有多个字符?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42586350/

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