2_chapter9
程序员文章站
2022-03-05 12:21:05
...
9.1 Dictionaries
List像筒装薯片,像书架
Dictionary像一个大包,什么都能往里面仍,需要lable
1.创建dictionary a=dict()
2. 用{ }创建dictionary
9.2 Counting with Dictionaries
1.利用dictionaries进行数数
2.检测某个key是否在dictionary里
除了一条一条检测,也可以用函数get
3.数数简化版本
Dictionaries and Files
1.loops
key 直接这样loop是默认数key的
2.直接输出key、value和items:以list的形式
3.tuple:
在以item输出的时候,每个item中的数据结构叫一个tuple
4.利用循环查找一个item:
5.输入一个文件得到数目最大的词
assignment
name = input("Enter file:")
if len(name) < 1 : name = "mbox-short.txt"
handle = open(name)
count={}
for line in handle:
if not line.startswith('From '):continue
words=line.split()
count[words[1]]=count.get(words[1],0)+1
maxnam=None
maxnum=None
for name,number in count.items():
if number is None or maxnum<number:
maxnum=number
maxnam=name
print(maxnam,maxnum)
上一篇: Simplify Path
下一篇: chapter_2
推荐阅读