python大作业有哪些题目,500行代码python大作业

大家好,小编来为大家解答以下问题,python大作业有哪些题目,500行代码python大作业,现在让我们一起来看看吧!

Source code download: 本文相关源码

本篇文章给大家谈谈python程序设计期末大作业,以及python期末大作业300行,希望对各位有所帮助,不要忘了收藏本站喔。

importrequestsimportrefrom bs4 importBeautifulSoupfrom datetime importdatetimeimportpandasimportsqlite3importjiebafrom wordcloud importWordCloudimportmatplotlib.pyplot as plt

url= "http://www.xinhuanet.com/"f=open("css.txt","w+")

res0=requests.get(url)

res0.encoding="utf-8"soup= BeautifulSoup(res0.text,"html.parser")

newsgroup=[]for news in soup.select("li"):if len(news.select("a"))>0:print(news.select("a")[0].text)

title=news.select("a")[0].text

f.write(title)

f.close()

f0= open('css.txt','r')

qz=[]

qz=f0.read()

f0.close()print(qz)

words=list(jieba.cut(qz))

ul={':','的','"','、','”','“','PHP与PYTHON:基于语法,功能,应用程序等的详细比较python编程代码中如何注释。','!',':','?',' ','\u3000',',','\n'}

dic={}

keys= set(words)-ulfor i inkeys:

dic[i]=words.count(i)

c=list(dic.items())

c.sort(key=lambda x:x[1],reverse=True)

f1= open('diectory.txt','w')for i in range(10):print(c[i])for words_count in range(c[i][1]):

f1.write(c[i][0]+' ')

f1.close()

df=pandas.DataFrame(words)print(df.head())

with sqlite3.connect('newsdb3.sqlite') as db:

df.to_sql('newsdb3',con =db)

f3= open('diectory.txt','r')

cy_file=f3.read()

f3.close()

cy=WordCloud().generate(cy_file)

plt.imshow(cy)

plt.axis("off")

plt.show()

  • 11
    点赞
  • 7
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值