python中all函数的用法

python中all函数的用法,第1张

python中all函数的用法

默认all函数可以判定一个元组或者列表中的元素是否都为真

默认的是元组中不存在0,空字符 none是都为True,其他的都为False

也可以添加判断条件,判断一个列表或者元组中的所有元素是否都满足条件

以下展示了使用 all() 方法的实例:

>>> all(['a', 'b', 'c', 'd'])  # 列表list,元素都不为空或0
True
>>> all(['a', 'b', '', 'd'])   # 列表list,存在一个为空的元素
False
>>> all([0, 1,2, 3])          # 列表list,存在一个为0的元素
False
   
>>> all(('a', 'b', 'c', 'd'))  # 元组tuple,元素都不为空或0
True
>>> all(('a', 'b', '', 'd'))   # 元组tuple,存在一个为空的元素
False
>>> all((0, 1, 2, 3))          # 元组tuple,存在一个为0的元素
False
   
>>> all([])             # 空列表
True
>>> all(())             # 空元组
True

添加判断条件的实例

class Solution:

    def findWords(self, words: List[str]) -> List[str]:

        out = []

        s1 = "qwertyuiop"

        s2 = "asdfghjkl"

        s3 = "zxcvbnm"

        for word in words:

            if all(x.lower() in s1 for x in word) or all(x.lower() in s2 for x in word) or all(x.lower() in s3 for x in word):#判断单词中是否所有的字符都在字串中,为真的话,将它加入列表

                out.append(word)

        return out

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/4830540.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-10
下一篇 2022-11-10

发表评论

登录后才能评论

评论列表(0条)

保存