博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
列表、元组、字典、集合的定义、操作与综合练习
阅读量:5023 次
发布时间:2019-06-12

本文共 609 字,大约阅读时间需要 2 分钟。

totalStr='201709080012何倩仪 201709080013曾焕豪 201709080027许文杰 201709080012何倩仪 201709080013曾焕豪 201709080013曾焕豪 'totalList=totalStr.split(' ')totalset=set (totalList)print(totalList)print(totalset)totaldict={}for d in totalset :    totaldict [d] =totalList.count(d)print(totaldict)

 

l=['o','p','q','r']  #可改变顺序可增加或减少元素l.append('o')print(l)t=('o','p','q','r')# 不能改变,也不能改变顺序scores=[90, 88, 99,77]d={
'o':88,'p':99,'q':77,'r':90}# ,没有顺序 不能重复d['o']=90d['p']=100print(d)s1={
'o','p','q','r'} # 没有顺序 不能重复s2={1,2,3,'o'}print(s1,s2)print(s1&s2)#交集print(s1|s2)#并集

 

转载于:https://www.cnblogs.com/xiefei33--/p/9147438.html

你可能感兴趣的文章
强制客户端更新Silverlight XAP文件方法汇总(转)
查看>>
Android tabLayout+recyclerView实现锚点定位
查看>>
numpy.squeeze()的用法
查看>>
数字滤波器 C语言
查看>>
JAVA基础知识 String s = new String("ABC") VS String s = "abc"
查看>>
mysql 数据库,表存储 大小
查看>>
将博客搬至CSDN
查看>>
Spring AOP编程
查看>>
2017.2.18[codevs3311][bzoj3668]NOI2014D1T1起床困难综合症
查看>>
MySQL表的四种分区类型
查看>>
最全的分区类型及详解
查看>>
Python 类中__init__()方法中的形参与如何修改类中属性的值
查看>>
9.1.3 前端 - HTML body标签 - 文本样式
查看>>
ACID属性
查看>>
cnpm不是内部命令的解决方案:配置环境变量
查看>>
7系列FPGA远程更新方案-QuickBoot(转)
查看>>
导出帐号和权限脚本
查看>>
markdown公式编辑参考
查看>>
利用运行时给模型赋值
查看>>
归并排序求逆序对
查看>>