Python学习-集合的常见用法

st = [1,2,3,4,5]
ct = [2,3,4,5,76]
list = set(["name", 'list', 'try'])
list2 = set(["name", 'list', 'try', 'but', 'test'])
# 两个列表去重,利用集合

st = set(st)   #设为集合
ct = set(ct)
print(st, type(st))sct0 = st.union(ct)  #并集
sct = st | ct   #并集

sct2 = st.intersection(ct) #交集
sct1 = st & ct  #交集

sct3 = st.difference(ct) #差集
sct4 = st - ct   #差集,st中减去ct中的元素print(sct0)
print(sct)
print(sct1)
print(sct2)print(sct3)
print(sct4)print(list.intersection(list2))#子集
sct_0 = set([2, 3])
print(sct_0.issubset(st))  #判断前者是否为后者的子集
print(sct_0.issuperset(st))#判断前者是否为后者的父集#对称差集
print(st.symmetric_difference(ct))  # 去掉两者的并集
print(st.copy())cp_st = st.copy()
print(cp_st)#添加单个元素
cp_st.add(11)
print(cp_st)
print('%s st list is here' % st) #会发现st中没有变
#添加多个元素,位置是随机的
cp_st.update([11, 22, 'key'])
print(cp_st)#判断是否交集是空
print(cp_st.isdisjoint(list2))#去除一个元素
cp_st.remove(11)
print(cp_st)cp_st.add("str")
print(cp_st)
cp_st.remove('str')
print(cp_st)cp_st.pop()   #这个算是随机删除
print(cp_st)cp_st.discard('key')  #指定删除哪一个,最好是数字,但是不是数字也能用。会有提示
print(cp_st)

 

转载于:https://www.cnblogs.com/Ian-learning/p/7827852.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/279629.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Autofac之自动装配

从容器中的可用服务中选择一个构造函数来创造对象,这个过程叫做自动装配。这个过程是通过反射实现的 默认 思考这么一个问题,如果注册类型中存在多个构造函数,那么Autofac会选择哪一个来创建类型的实例 答案是"尽可能最多参数" class ConstructorClass {p…

对Emlog 6.0 Beta的完整代码审计过程

Emlog 6.0 beta版本,这可能是最后一篇关于PHP语言CMS的代码审计文章,此次将详细记录完整的审计过程。 文章基本上完整记录小东的对此CMS审计过程,或许显得繁琐,但代码审计的过程就是这样,发现可能项,然后精…

SINOCES 2011

突然发现又好久没写过日志了 是在是太懒了… 难得休假去看了眼消费电子 感觉实在是一年不如一年 佳能、索尼不见踪影,相机满场没见一家(大牌子是真没见到) 华硕技嘉微星等主板厂商同样失踪… PC方面,联想貌似是来卖电脑包鼠标的&a…

esim卡与ms卡的区别_什么是eSIM,它与SIM卡有何不同?

esim卡与ms卡的区别With the launch of the Apple Watch 3, the term “eSIM” has been thrown around a lot. And now, Google’s Pixel 2 is the first phone to use this new technology, it’s time we take a closer look at what it is, what it does, and what this me…

机器学习实战之logistic回归分类

利用logistic回归进行分类的主要思想:根据现有数据对分类边界建立回归公式,并以此进行分类。 logistic优缺点: 优点:计算代价不高,易于理解和实现。缺点:容易欠拟合,分类精度可能不高。 .适用数…

HDU 6343.Problem L. Graph Theory Homework-数学 (2018 Multi-University Training Contest 4 1012)

6343.Problem L. Graph Theory Homework 官方题解: 一篇写的很好的博客: HDU 6343 - Problem L. Graph Theory Homework - [(伪装成图论题的)简单数学题] 代码: 1 //1012-6343-数学2 #include<iostream>3 #include<cstdio>4 #include<cstring>5 #include<…

Android GridView LruCache

照片墙这种功能现在应该算是挺常见了&#xff0c;在很多应用中你都可以经常看到照片墙的身影。它的设计思路其实也非常简单&#xff0c;用一个GridView控件当作“墙”&#xff0c;然后随着GridView的滚动将一张张照片贴在“墙”上&#xff0c;这些照片可以是手机本地中存储的&a…

如何在Android TV上自定义推荐行

When you fire up Android TV, the first thing you see is a list of movies and shows the system thinks you’ll like. It’s often full of the latest flicks or hottest news, but sometimes it could just be things relevant to your interests and the apps you have…

递归 段错误 习题

段错误 递归里面算阶乘 f(10000000)没有输出&#xff0c;使用gdb 显示 SIGSEGV--段错误编译后产生的可执行文件里面保存着什么&#xff1f;UNIX/Linux 用 ELFDOS下用COFFWindows用PE&#xff08;COFF扩充而得&#xff09;段&#xff08;segmentation&#xff09;二进制文件内的…

你知道你常用的dos和linux命令吗?

功能 Linux MS-DOS 进入到该目录 cd cd 列举文件 ls dir 创建目录 mkdir mkdir 清除屏幕 clear cls 复制文件 cp copy 移动文件 mv move 删除文件 rm del 查看文件 less more 文件重命名 mv ren 比较文件内容 diff fc 查看当前路径 pwd chd…

steam串流到手机_如何从手机将Steam游戏下载到PC

steam串流到手机Steam allows you to remotely install games from your smartphone, just like you can with a PlayStation 4 or Xbox One. You can download games to your gaming PC from anywhere, ensuring those big downloads are complete and the game is ready to p…

编写安装配置ftp-samba服务脚本

本脚本实例的要求如下&#xff1a; 1、公司有公共共享目录public,所有员工均可读写&#xff0c;但不允许删除其他员工的文件;不能匿名登录 2、每部门均有共享目录&#xff0c;部门经理可读写&#xff0c;部门员工可读&#xff1b; 非本部门员工不能访问&#xff08;caiwu、rens…

利用java实现excel转pdf文件

在有些需求当中我们需要抓取字段并且填充到excel表格里面&#xff0c;最后将excel表格转换成pdf格式进行输出&#xff0c;我第一次接触这个需求时&#xff0c;碰到几个比较棘手的问题&#xff0c;现在一一列出并且提供解决方案。 1&#xff1a;excel转pdf出现乱码&#xff1a; …

Jmeter HTTP请求后响应数据显示乱码解决方法

Jmeter请求后结果树里无论是text还是html响应数据显示乱码&#xff0c;这是因为jmeter 编码格式配置文件默认不开启导致的&#xff0c;解决方法如下&#xff1a; 1&#xff09;进入jmeter-***\bin目录下&#xff0c;找到jmeter.properties文件&#xff0c;以文本文件形式打开 2…

禁用windows10更新_如何在Windows 10中禁用投影

禁用windows10更新The drop shadows on applications in the Windows 10 preview are really big and suspiciously similar to the ones in OS X, and if they aren’t your speed, you can easily remove them. We actually think they look good, but since somebody out th…

如何访问 Service?- 每天5分钟玩转 Docker 容器技术(99)

前面我们已经学习了如何部署 service&#xff0c;也验证了 swarm 的 failover 特性。不过截止到现在&#xff0c;有一个重要问题还没有涉及&#xff1a;如何访问 service&#xff1f;这就是本节要讨论的问题。 为了便于分析&#xff0c;我们重新部署 web_server。 ① docker se…

sqlyog下载

sqlyog下载&#xff08;附注册码&#xff09;&#xff1a;http://www.onlinedown.net/soft/24926.htm转载于:https://www.cnblogs.com/shujuxiong/p/9474496.html

Linux配置手册(二)配置DHCP服务器

1.检查是否安装DHCP服务器软件 2.挂在RHEL5系统光盘 3.安装DHCP服务软件 4.将模板配置文件复制并覆盖现在的配置文件 5.配置修改dhcpd.conf文件 配置信息 默认租约时间 default-lease-time 最大租约时间 max-lease-time 局域网内所有主机的域名 option domain-name 客户机所使用…

什么是Google Play保护以及如何确保Android安全?

Android is open, flexible, and all about choice. Unfortunately, that flexibility comes more potential security issues. The good news is that Google has a system in place named Play Protect that helps keep Android secure. Android开放&#xff0c;灵活且具有多…

如何使计算机为您读取文档

Since the beginning of the computer age, people have always enjoyed making computers talk to them. These days, that functionality is built right into Windows and you can easily use it to have your PC read documents to you. 自计算机时代开始以来&#xff0c;人…