Python:如何使用集合intersection_update方法

Python是常用的一种编程语言 , 内置了丰富的编程模块和函数 。 其中 , 集合的intersection_update()方法可以删除各集合中都不存在的项目 。 今天教大家如何在Python编程中使用集合的intersection_update()方法 。
需要这些哦
联想小新pro13
Win10
Python3.6.5
PyCharm2019.3.3
方式/
1起首在PyCharm软件中 , 打开一个Python项目 。

Python:如何使用集合intersection_update方法

文章插图

2在Python项目中 , 新建并打开一个空白的python文件(好比:test.py) 。
Python:如何使用集合intersection_update方法

文章插图

3在python文件编纂区中 , 利用大括号界说一个“x”调集对象 。
Python:如何使用集合intersection_update方法

文章插图

4然后再利用大括号界说一个“y”调集对象 。
Python:如何使用集合intersection_update方法

文章插图

5继续输入:“x.intersection_update(y) ” , 点击Enter键 。
Python:如何使用集合intersection_update方法

文章插图

6再次输入:“print(x)”进行打印 。
Python:如何使用集合intersection_update方法

文章插图

7在编纂区域点击鼠标右键 , 在弹出菜单中选择“运行”选项 。
Python:如何使用集合intersection_update方法

文章插图

8【Python:如何使用集合intersection_update方法】在运行成果窗口中 , 已经利用Python调集的intersection_update()方式删除调集 x 和调集 y 都不存在的项目 。
Python:如何使用集合intersection_update方法

文章插图


以上内容就是Python:如何使用集合intersection_update方法的内容啦 , 希望对你有所帮助哦!

    推荐阅读