修正了第14课文档中的bug
parent
d4ed9c7ded
commit
204cae3d75
|
@ -159,14 +159,14 @@ set1.clear()
|
|||
print(set1) # set()
|
||||
```
|
||||
|
||||
如果要判断两个集合有没有相同的元素可以使用`isdisjoint`方法,代码如下所示。
|
||||
如果要判断两个集合有没有相同的元素可以使用`isdisjoint`方法,没有相同元素返回`True`,否则返回`False`,代码如下所示。
|
||||
|
||||
```Python
|
||||
set1 = {'Java', 'Python', 'Go', 'Kotlin'}
|
||||
set2 = {'Kotlin', 'Swift', 'Java', 'Objective-C', 'Dart'}
|
||||
set3 = {'HTML', 'CSS', 'JavaScript'}
|
||||
print(set1.isdisjoint(set2)) # True
|
||||
print(set1.isdisjoint(set3)) # False
|
||||
print(set1.isdisjoint(set2)) # False
|
||||
print(set1.isdisjoint(set3)) # True
|
||||
```
|
||||
|
||||
### 不可变集合
|
||||
|
|
Loading…
Reference in New Issue