Python- Dictionaries课件.pptx

  1. 1、本文档共30页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
Python Dictionaries;What is a Collection?;What is Not a “Collection”?;A Story of Two Collections..;Dictionaries;Dictionaries;Lists index their entries based on the position in the list Dictionaries are like bags - no order So we index the things we put in the dictionary with a “lookup tag”;Comparing Lists and Dictionaries;>>> lst = list() >>> lst.append(21) >>> lst.append(183) >>> print(lst) [21, 183] >>> lst[0] = 23 >>> print(lst) [23, 183];Dictionary Literals (Constants);Most Common Name?;Most Common Name?;Most Common Name?;Many Counters with a Dictionary;Dictionary Tracebacks;When We See a New Name;The get Method for Dictionaries;Simplified Counting with get();/watch?v=EHJ9uYx5L58;Counting Words in Text;Writing programs (or programming) is a very creative and rewarding activity. You can write programs for many reasons ranging from making your living to solving a difficult data analysis problem to having fun to helping someone else solve a problem. This book assumes that everyone needs to know how to program and that once you know how to program, you will figure out what you want to do with your newfound skills.;Counting Pattern;python wordcount.py Enter a line of text: the clown ran after the car and the car ran into the tent and the tent fell down on the clown and the car Words: ['the', 'clown', 'ran', 'after', 'the', 'car', 'and', 'the', 'car', 'ran', 'into', 'the', 'tent', 'and', 'the', 'tent', 'fell', 'down', 'on', 'the', 'clown', 'and', 'the', 'car'] Counting… Counts {'and': 3, 'on': 1, 'ran': 2, 'car': 3, 'into': 1, 'after': 1, 'clown': 2, 'down': 1, 'fell': 1, 'the': 7, 'tent': 2};counts = dict() line = input('Enter a line of text:') words = line.split() print('Words:', words) print('Counting...’) for word in words: counts[word] = counts.get(word,0) + 1 print('Counts', counts);Definite Loops and Dictionaries;Retrieving Lists of Keys and Values;Bonus: Two Iteration Variables!;name = input('Enter file:') handle = open(name) counts = dict() for line

文档评论(0)

liuxiaoyu99 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档