2019年12月27日 MRKJ page119 集合

可变集合:存在唯一性,可以用于去重且无序

空集合的创建:只能用set创建 s=set()

s=set([1,2,3,4,4,3,3,23434])
s.add(‘abc‘)#添加元素
s.remove(‘abc‘)#删除指定元素
w=s.pop()#随机删除一个元素,并把删除的值返回
print(s,w)
# s.clear()#清空集合

原文地址:https://www.cnblogs.com/python1988/p/12110001.html

时间: 2024-09-28 21:42:17

2019年12月27日 MRKJ page119 集合的相关文章

2019年12月23日 MRKJ 元祖推导式page107

t=(1111,222,333,444,555) for index,item in enumerate(t): print(index,item) >>> 0 11111 2222 3333 4444 555 import random randomnumber=(random.randint(10,100) for i in range(5)) # print(randomnumber)#得到的结果是生成器对象,需要用tuple转换 print(tuple(randomnumber)

2019年12月29日 MRKJ page125 实战

checi=['T40','T298','Z158'] dizhi=['cj','bj','sh'] atime=['2h','1h','3h'] c1=dict(zip(checi,dizhi)) print(c1) a1=dict(zip(checi,atime)) print(a1) print('checi','\t','dizhi','\t','atime') for i in checi: print(i,'\t',c1[i],'\t',a1[i])#注意\t的用法和效果 cc=in

19.go语言基础学习(上)——2019年12月16日

2019年12月16日16:57:04 5.接口 2019年11月01日15:56:09 5.1 duck typing 1. 2. 接口 3.介绍 Go 语言的接口设计是非侵入式的,接口编写者无须知道接口被哪些类型实现. 而接口实现者只需知道实现的是什么样子的接口,但无须指明实现哪一个接口. 编译器知道最终编译时使用哪个类型实现哪个接口,或者接口应该由谁来实现. 每个接口类型由数个方法组成.接口的形式代码如下: type 接口类型名 interface{ 方法名1( 参数列表1 ) 返回值列表

微软苏州校招笔试 12月27日

题目1 : Lost in the City 时间限制:10000ms 单点时限:1000ms 内存限制:256MB 描述 Little Hi gets lost in the city. He does not know where he is. He does not know which direction is north. Fortunately, Little Hi has a map of the city. The map can be considered as a grid

三周第三次课(12月27日) 3.7 su命令 3.8 sudo命令 3.9 限制root远程登录

三周第三次课(12月27日)3.7 su命令3.8 sudo命令3.9 限制root远程登录 su命令: 用户和工作组管理: su命令用于切换当前用户身份到其他用户身份, 变更时须输入所要变更的用户帐号与密码. 语法: su(选项)(参数) 选项: -c<指令>或--command=<指令>:执行完指定的指令后,即恢复原来的身份: -f或--fast:适用于csh与tsch,使shell不用去读取启动文件: -l或--login:改变身份时,也同时变更工作目录,以及HOME,SHE

2019年12月8日 运飞龙 linux

1.system v init运行级别及作用 init运行级别                  作用 0                                  关机 1                                  单用户模式 2                                  多用户的文本界面 3                                  多用户的文本界面 4                             

蔡康永的说话之道——2019年12月15日

.bodyContainer { font-family: Arial, Helvetica, sans-serif; text-align: center; padding-left: 32px; padding-right: 32px; } .notebookFor { font-size: 18px; font-weight: 700; text-align: center; color: rgb(119, 119, 119); margin: 24px 0px 0px; padding:

23.密码学知识-加密介绍-1——2019年12月19日

2019年12月19日14:51:00 1. 第1天 - 对称加密 1.1 基础知识点 知识点大纲介绍 密码的基础概念 对称加密 非对称加密 单向散列函数 哈希函数 消息认证码 数字签名 证书 ssl/tls - https 为什么要加密, 以及解决方案 保证数据安全 加密三要素 明文/密文 秘钥 定长的字符串 需要根据加密算法确定其长度 算法 加密算法 解密算法 加密算法和解密算法有可能是互逆的, 也有可能相同 常用的两种加密方式 对称加密 秘钥: 加密解密使用的是同一个秘钥, 秘钥有一个 特

33.《高血压看这本就够了》摘录-陈罡——2019年12月22日

.bodyContainer { font-family: Arial, Helvetica, sans-serif; text-align: center; padding-left: 32px; padding-right: 32px; } .notebookFor { font-size: 18px; font-weight: 700; text-align: center; color: rgb(119, 119, 119); margin: 24px 0px 0px; padding: