python实现按首字母分类查找功能
Python  /  管理员 发布于 7年前   202
本文实例为大家分享了python实现按首字母分类查找的具体代码,供大家参考,具体内容如下
要求:
1.自己查找一些英文词汇,存储到某个容器类中
2.根据英文词汇的首字母进行分类,类似于手机通讯簿中的快速查找功能
3.根据用户输入的字母,找到该字母开头的所有单词
#coding=utf-8lexicons=["the","be","of","and","A","to","in","he","have","it","that","for","they","I","with","as","not","on","she","at","by","this","we","you","do","but","from","or","which","one","would","all","will","there","say","who","make","when","can"]while True: startLetter=raw_input("输入一个字母,列出所有以此字母开头的单词:") if len(startLetter)!=1: print "必须是一个字母" else: reLexicons=[] #结果列表 for x in xrange(len(lexicons)): lexicon=lexicons[x] if lexicon[0].lower()==startLetter.lower():#都转为小写后比较 开头字母不区分大小写 reLexicons.append(lexicon) if len(reLexicons)==0: print "没有结果" else: for x in xrange(len(reLexicons)): print reLexicons[x]
上面的代码没有走第二步,如下代码 使用字典解决第二步
#coding=utf-8'''边遍历,边构造 key value '''lexicons=["the","be","of","and","A","to","in","he","have","it","that","for","they","I","with","as","not","on","she","at","by","this","we","you","do","but","from","or","which","one","would","all","will","there","say","who","make","when","can"]lexiconDict={}#分类 保存字典中lexiconLen=len(lexicons)for x in xrange(len(lexicons)): lexicon=lexicons[x] startLetter=lexicon[0] dictLexicons=lexiconDict.get(startLetter,[]) #空列表说明没有Key 则添加Key 否则追加Key对应的Value if len(dictLexicons)==0: lexiconDict[startLetter]=[lexicons[x]] else: dictLexicons.append(lexicons[x])while True: startLetter=raw_input("输入一个字母,列出所有以此字母开头的单词:") if len(startLetter)!=1: print "必须是一个字母" else: lexicons=lexiconDict.get(startLetter.lower(),[]) if len(lexicons)==0: print "没有结果" else: for x in lexicons: print x
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
122 在
学历:一种延缓就业设计,生活需求下的权衡之选中评论 工作几年后,报名考研了,到现在还没认真学习备考,迷茫中。作为一名北漂互联网打工人..123 在
Clash for Windows作者删库跑路了,github已404中评论 按理说只要你在国内,所有的流量进出都在监控范围内,不管你怎么隐藏也没用,想搞你分..原梓番博客 在
在Laravel框架中使用模型Model分表最简单的方法中评论 好久好久都没看友情链接申请了,今天刚看,已经添加。..博主 在
佛跳墙vpn软件不会用?上不了网?佛跳墙vpn常见问题以及解决办法中评论 @1111老铁这个不行了,可以看看近期评论的其他文章..1111 在
佛跳墙vpn软件不会用?上不了网?佛跳墙vpn常见问题以及解决办法中评论 网站不能打开,博主百忙中能否发个APP下载链接,佛跳墙或极光..
Copyright·© 2019 侯体宗版权所有·
粤ICP备20027696号