在Python3中,比较两个 [
{
"id": 1,
"club_name": "Test Club",
"club_image": [
"club_image/picture/pexels-photo-247932_2gnEgrn.jpeg",
"club_image/picture/FB_IMG_1525249792281.jpg"
],
"club_requirment": [
"Hello Günter",
"whats your name",
"text"
]
}
]the
Set
(无论它们是否具有相同的元素)的最省时间的方式是什么 >?
例如,我想要一个名为elements
的函数,如下所示。我应该如何编写代码以使其以最省时的方式工作?
compareSets
答案 0 :(得分:6)
要测试两个集合是否相等,请使用相等运算符(==
)。这是REPL中的一个示例,它利用了可迭代的字符串:
>>> set('a') == set('a')
True
>>> set('a') == set('b')
False
>>> set('a') == set('ab')
False
>>> set('ba') == set('ab') #Shows the sets are order-independent
True