欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

2_chapter9

程序员文章站 2022-03-05 12:21:05
...

9.1 Dictionaries

List像筒装薯片,像书架
Dictionary像一个大包,什么都能往里面仍,需要lable
1.创建dictionary a=dict()
2_chapter9
2. 用{ }创建dictionary
2_chapter9

9.2 Counting with Dictionaries

1.利用dictionaries进行数数
2_chapter9
2.检测某个key是否在dictionary里
除了一条一条检测,也可以用函数get
2_chapter9
3.数数简化版本
2_chapter9

Dictionaries and Files

1.loops
key 直接这样loop是默认数key的
2_chapter9
2.直接输出key、value和items:以list的形式
2_chapter9
3.tuple:
在以item输出的时候,每个item中的数据结构叫一个tuple

4.利用循环查找一个item:
2_chapter9
5.输入一个文件得到数目最大的词2_chapter9

assignment

2_chapter9

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)
相关标签: python学习

上一篇: Simplify Path

下一篇: chapter_2

推荐阅读