gpt4 book ai didi

python - 检查以确保字符串不包含多个值

转载 作者:太空狗 更新时间:2023-10-29 21:20:23 25 4
gpt4 key购买 nike

**注意 - 我不会只在字符串的末尾进行测试 - 需要在字符串的任何位置找到特定的子字符串

检查以确保字符串不包含多个值的最快方法是什么。我当前的方法效率低下且不符合 pythonic:

if string.find('png') ==-1 and sring.find('jpg') ==-1 and string.find('gif') == -1 and string.find('YouTube') == -1:

最佳答案

尝试:

if not any(extension in string for extension in ('jpg', 'png', 'gif')):

这与您的代码基本相同,但编写得更优雅。

关于python - 检查以确保字符串不包含多个值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6542801/

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