作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我知道我能做到:
if 'hello' in 'hello world':
如果我有几个针,比如 ('.css', '.js', '.jpg', '.gif', '.png', '.com') 我想检查其中一个这些在一个字符串中。
(注意:endswith
在这种情况下不会这样做,它们可能不是后缀)
最佳答案
您可能会发现 any
有用:
haystack = 'hello world'
needles = ['.css', '.js', '.jpg', '.gif', '.png', '.com']
if any(needle in haystack for needle in needles):
pass # ...
关于python - 如果大海捞针,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26600557/
我有一个函数,它接受一个字符串(the haystack)和一个字符串数组(the needles),如果至少有一个 needle 是 haystack 的子串,则返回 true。编写它并没有花太多时
所以给定“针”和“这里有针但没有这个针大海捞针” 我写了 def find_needle(n,h): count = 0 words = h.split(" ") for wo
我正在尝试创建一个程序来确定是否在数组中找到用户输入。 然后我要输出整数在数组中的位置。 看起来我的程序没有从我的主程序中提取任何内容。 这是程序: public static int returnI
我有一个 C 程序,它从命令行获取参数。以相反的顺序打印参数。并在大海捞针中找到针/子串。我有以下代码: 哑巴.c #include #include #include #include "Du
这个问题在这里已经有了答案: Compare two objects in Java with possible null values (12 个答案) What is a NullPointer
我是一名优秀的程序员,十分优秀!