Python判断集合的方法有哪些?

1、isdisjoint 方法用于判断两个集合是否存在相同元素,没有返回 True,否则返回 False。

my_set1={"apple","orange","pear","grape"}
my_set2={"banana","watermelon"}

#两个集合没有相同元素
ret_bool=my_set1.isdisjoint(my_set2)
print(ret_bool)#返回True

my_set1={"apple","orange","pear","grape"}
my_set2={"banana","watermelon","apple"}

#两个集合有相同元素
ret_bool=my_set1.isdisjoint(my_set2)
print(ret_bool)

2、issubset 该方法用于判断一个集合是否是另一个集合的子集,确定是返回 True,否则返回 False。

my_set1={"apple","orange","pear","grape"}
my_set2={"banana","watermelon"}

#第二个集合不是第一个集合的子集
ret_bool=my_set2.issubset(my_set1)
print(ret_bool)#返回False

#第二个集合是第一个集合的子集
my_set1={"apple","orange","pear","grape"}
my_set2={"orange","apple"}

ret_bool=my_set2.issubset(my_set1)
print(ret_bool)#返回True

以上就是Python判断集合的方法,希望能对大家有所帮助。更多Python学习指路:Python基础教程

声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。