博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
064字典集合作业
阅读量:6322 次
发布时间:2019-06-22

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

1.

d={'001':'88','002':'84','003':'89','004':'86','005':'82'}

>>> d['002']
'84'
>>> d.get('003')
SyntaxError: unexpected indent
>>> d.get('003')
'89'
>>> d.pop('003')
'89'
>>> d.get('003')
>>> print(d.get('003'))
None
>>> d
{'001': '88', '002': '84', '004': '86', '005': '82'}
>>> d.keys()
dict_keys(['001', '002', '004', '005'])
>>> d.values()
dict_values(['88', '84', '86', '82'])
>>> d.items()
dict_items([('001', '88'), ('002', '84'), ('004', '86'), ('005', '82')])

2.

s=list('2347555544')

tu=tuple('9876687879')
print(ls)
print(tu)
dc=dict(zip(ls,tu))
print(dc)
print('ls遍历\n') 
for i in ls:
print(i)
print('tu遍历\n') 
for i in tu:
print(i)
print('dict遍历\n') 
for i in dc:
print(i,dc[i])

列表里面的数据是可变的,可增删改插。但是元组里面的数据是不可变的,只可增,不可删改,字典的查找与插入速度快,但是占用内存,浪费多,不能排序;集合不能重复,不存储values,创建集合需要提供一个列表作为输入集合。

3.s='''every night in my dreams 

i see you, i feel you,
that is how i know you go on 
far across the distance 
and spaces between us 
you have come to show you go on 
near, far, wherever you are 
i believe that the heart does go on 
once more you open the door 
and you're here in my heart 
and my heart will go on and on 
love can touch us one time 
and last for a lifetime 
and never let go till we're one 
love was when i loved you 
one true time i hold to 
in my life we'll always go on 
near, far, wherever you are 
i believe that the heart does go on 
once more you open the door 
and you're here in my heart 
and my heart will go on and on 
there is some love that will not go away 
you're here, there's nothing i fear,
and i know that my heart will go on 
we'll stay forever this way 
you are safe in my heart 
and my heart will go on and on
'''

s=s.lower()

s=s.replace('\n',' ')
word=s.split(' ')
dic={}
keys=set(word)
for i in keys:
dic[i]=word.count(i)
print(dic)

转载于:https://www.cnblogs.com/-064/p/7573343.html

你可能感兴趣的文章
win7系统设置电脑不待机状态的操作方法
查看>>
u盘文件误删怎么恢复?简单几步就能解决
查看>>
手把手教你如何使用驰骋工作流程引擎的表单设计器做数据提交前的表单验证...
查看>>
nginx php 超过4M文件上传失败,uploadify i/o error解决。
查看>>
nginx+php安装配置
查看>>
LAMP+Centos6.5上安装zabbix
查看>>
android判断网络连接状态的三种方法
查看>>
ZOJ Monthly, March 2013 解题报告
查看>>
LaTex表格 Itemize&&enumerate
查看>>
Spring Boot中@OneToMany与@ManyToOne几个需要注意的问题
查看>>
文件传输协议之FTP
查看>>
Openstack 安装部署指南翻译系列 之 Glance服务安装(Image)
查看>>
Java 使用POI实现execl的导入导出数据实践
查看>>
Unity3D游戏开发之伤害数值显示
查看>>
如何在Linux上搭建一个基于Web的轻型监控系统
查看>>
linux基础命令使用
查看>>
zabbix简单检测
查看>>
我的友情链接
查看>>
CCNP学习笔记10-路由部分--BGP 前缀列表
查看>>
关于导航视图无法隐藏的问题:self.navigationItem.rightBarButtonItem.customView.hidden = YES;无效...
查看>>