python Python:set.union(),issuperset()

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python Python:set.union(),issuperset()相关的知识,希望对你有一定的参考价值。

#!/usr/bin/env python3


def chk_superset():
    A = set(map(str, input().split()))
    b = set().union(input().split(), input().split())
    print(A.issuperset(b))

chk_superset()

以上是关于python Python:set.union(),issuperset()的主要内容,如果未能解决你的问题,请参考以下文章

Python学习第三天之字符串编码解码,集合,文件,函数

python 期末复习笔记(持续更新)

集合常用操作

集合操作

set的交,并,差,对称差

如何在不使用“|”的情况下在一行中连接两个集合