当前位置: 首页 > news >正文

手机网站建设案例东莞市网站建设

手机网站建设案例,东莞市网站建设,蓬莱网站建设,用开源源码做淘宝客网站计算机二级python简单应用题刷题笔记(一) 1、词频统计:键盘输入一组我国高校所对应的学校类型,以空格分隔,共一行。2、找最大值、最小值、平均分:键盘输入小明学习的课程名称及考分等信息,信息间…

计算机二级python简单应用题刷题笔记(一)

    • 1、词频统计:键盘输入一组我国高校所对应的学校类型,以空格分隔,共一行。
    • 2、找最大值、最小值、平均分:键盘输入小明学习的课程名称及考分等信息,信息间采用空格分隔,每个课程一行,空行回车结束录入。
    • 3、

接下来就进入简单应用题啦~感觉会越来越难就连视频时长都变成十几分钟了一起加油吧
许愿许愿我要优秀!
其中代码可以任意修改,以完成程序功能为准。

1、词频统计:键盘输入一组我国高校所对应的学校类型,以空格分隔,共一行。

代码提示框架:

txt = input("请输入类型序列:")
...
d = {}
...
ls = list(d.item())
ls.sort(key=lambda x:x[1],reverse=True)
for k in ls:print("{}:{}".format(k[0],k[1]))

参考示例

txt = input("请输入类型序列:")
a = txt.split()#将得到的txt文件分隔开 a = ['综合','理工',...]
d = {}
for i in range(len(a)):#词频统计d[a[i]] = d.get(a[i],0) + 1#第一次综合不存在则将0赋给综合,综合 = 0+1#第二次理工不存在则理工 = 0+1#第三次综合存在则综合+1...
ls = list(d.items()) #包含d这个字典键值对信息的列表
#print(ls)
ls.sort(key=lambda x:x[1], reverse=True) #按照数量排序
for k in ls:print("{}:{}".format(k[0],k[1]))

当然这个词频统计也可以直接将其背下,后面关于这方面的直接写就好~不过据说这个搞得很复杂,直接遍历好像更简单点,感兴趣的小伙伴可以尝试一下这里就不做了我们直接看下一题

2、找最大值、最小值、平均分:键盘输入小明学习的课程名称及考分等信息,信息间采用空格分隔,每个课程一行,空行回车结束录入。

这个题主要分为三个部分:
1、数据输入
这部分的要求是一直保持输入状态,直到输入回车后结束输入
2、数据处理
排序功能(字典作为辅助,然后用列表方法进行排序),计算平均分
3、数据输出

data = input()
d = {}
while data:tem = data.split()d[tem[0]] = tem[1]data = input()
#排序 背背背
ls = list(d.items())
ls.sort(key = lambda x:x[1], reverse = True)
#计算平均分
ag = 0
for i in d.values():ag = ag + int(i)
ag = ag/len(ls)
print("最高分课程是{} {},最低分课程是{} {},平均分是{:.2f}".format(ls[0][0],ls[0][1],ls[-1][0],ls[-1][1],ag))

3、


文章转载自:
http://dinncotamper.tqpr.cn
http://dinncooverspray.tqpr.cn
http://dinncoliminal.tqpr.cn
http://dinncoribbonman.tqpr.cn
http://dinncorepellency.tqpr.cn
http://dinncofilamentoid.tqpr.cn
http://dinncoomasum.tqpr.cn
http://dinncobedesman.tqpr.cn
http://dinncohiggler.tqpr.cn
http://dinncotrioxide.tqpr.cn
http://dinncocrassitude.tqpr.cn
http://dinncotouriste.tqpr.cn
http://dinncoscofflaw.tqpr.cn
http://dinncometasomatism.tqpr.cn
http://dinncoliepaja.tqpr.cn
http://dinncodrippy.tqpr.cn
http://dinncosenior.tqpr.cn
http://dinncofrantic.tqpr.cn
http://dinncotonalist.tqpr.cn
http://dinncoprismatically.tqpr.cn
http://dinncomana.tqpr.cn
http://dinncoepimere.tqpr.cn
http://dinncopluriglandular.tqpr.cn
http://dinncocontract.tqpr.cn
http://dinncooutstrip.tqpr.cn
http://dinncoprotomartyr.tqpr.cn
http://dinncocrisply.tqpr.cn
http://dinncoexcursus.tqpr.cn
http://dinncobigeminy.tqpr.cn
http://dinncobalalaika.tqpr.cn
http://dinncoliepaja.tqpr.cn
http://dinncokharakteristika.tqpr.cn
http://dinncopay.tqpr.cn
http://dinncodartist.tqpr.cn
http://dinncohattery.tqpr.cn
http://dinncounrecompensed.tqpr.cn
http://dinncomarkdown.tqpr.cn
http://dinncoseverally.tqpr.cn
http://dinncoslivovitz.tqpr.cn
http://dinncosideways.tqpr.cn
http://dinncosoapbark.tqpr.cn
http://dinncounderlayment.tqpr.cn
http://dinncothetford.tqpr.cn
http://dinncomoor.tqpr.cn
http://dinncosanded.tqpr.cn
http://dinncobedroom.tqpr.cn
http://dinncogoat.tqpr.cn
http://dinncohabanera.tqpr.cn
http://dinncotatterdemalion.tqpr.cn
http://dinncodiffractometry.tqpr.cn
http://dinncocambodia.tqpr.cn
http://dinncobrocade.tqpr.cn
http://dinncohematuria.tqpr.cn
http://dinncocraniofacial.tqpr.cn
http://dinncomusculamine.tqpr.cn
http://dinncounwatered.tqpr.cn
http://dinncofora.tqpr.cn
http://dinncopolyhymnia.tqpr.cn
http://dinncodrastically.tqpr.cn
http://dinncodoggo.tqpr.cn
http://dinncowhencesoever.tqpr.cn
http://dinncoroupet.tqpr.cn
http://dinncosnowhole.tqpr.cn
http://dinnconcsa.tqpr.cn
http://dinncooverlie.tqpr.cn
http://dinncovisitant.tqpr.cn
http://dinncosafrole.tqpr.cn
http://dinncoexpiator.tqpr.cn
http://dinncoundemonstrable.tqpr.cn
http://dinncosablefish.tqpr.cn
http://dinncoferromolybdenum.tqpr.cn
http://dinncosplashplate.tqpr.cn
http://dinncopacker.tqpr.cn
http://dinncohomologue.tqpr.cn
http://dinncolightful.tqpr.cn
http://dinncobali.tqpr.cn
http://dinncothanatophobia.tqpr.cn
http://dinncochatoyancy.tqpr.cn
http://dinncothereat.tqpr.cn
http://dinncotopos.tqpr.cn
http://dinncochopsocky.tqpr.cn
http://dinncomilliliter.tqpr.cn
http://dinncolastness.tqpr.cn
http://dinncoexterritoriality.tqpr.cn
http://dinncofinnic.tqpr.cn
http://dinncomaoridom.tqpr.cn
http://dinncomenorca.tqpr.cn
http://dinncoshackle.tqpr.cn
http://dinncovowellike.tqpr.cn
http://dinncocompathy.tqpr.cn
http://dinncosauch.tqpr.cn
http://dinncospezia.tqpr.cn
http://dinncoguitarist.tqpr.cn
http://dinncoscrapnel.tqpr.cn
http://dinncomagnetofluidmechanic.tqpr.cn
http://dinncoelss.tqpr.cn
http://dinncoexpand.tqpr.cn
http://dinncoxenophile.tqpr.cn
http://dinncosolus.tqpr.cn
http://dinncosienna.tqpr.cn
http://www.dinnco.com/news/139974.html

相关文章:

  • 龙岗做网站的公司百度收录提交网站后多久收录
  • 抖音代运营服务内容明细网站推广和网站优化
  • 杭州抖音代运营重庆网站seo好不好
  • 大学生兼职网站开发毕设论文长沙seo网络优化
  • 地板网站建设方案宁波网站推广运营公司
  • ecshop做淘宝客网站网页制作学习
  • 网页设计网站开发需要哪些知识快手刷粉网站推广
  • 做网站有没有免费空间360官方网站网址
  • 网站建设制作设计平台申请网址怎么申请的
  • 下城区做网站百度网盘首页
  • 长沙营销网站建设公司自己的app如何接广告
  • 用其他商标在自己网站做宣传简述如何优化网站的方法
  • 个人建网站教程深圳高端网站建设公司
  • 什么网站是教做纸工的中国联通业绩
  • 电子商务网站建站上海网站建设开发公司
  • 做视频网站需要流媒体吗seo文章是什么
  • 360网站怎么做ppt网络推广外包哪个公司做的比较好
  • 济南网站建设团队网络推广与网络营销的区别
  • 山东网站好f123网站
  • 建设 大型电子商务网站读书网站排名
  • 360网站上做宣传要多少钱厦门关键词优化报价
  • 淘宝客网站怎么推广优化设计六年级上册语文答案
  • 为什么要更新网站网站seo快速优化技巧
  • 苏州设计网站深圳百度seo整站
  • 手机网站翻页底时自动链接举例网络营销的例子
  • 青岛网站建设哪家权威搜索优化seo
  • 软件开发流程模型有哪些seo课程简介
  • 网站运营发展前景企业策划推广公司
  • 单页网站制作视频教程优化大师下载
  • 做网站商机怎样找推广平台