03 2018 档案

摘要:下载一长篇中文文章。 从文件读取待分析文本。 news = open('gzccnews.txt','r',encoding = 'utf-8') 安装与使用jieba进行中文分词。 pip install jieba import jieba list(jieba.lcut(news)) 生成词频 阅读全文
posted @ 2018-03-28 17:09 186-叶晓钿 阅读(202) 评论(0) 推荐(0) 编辑
摘要:1 song = '''During my childhood, think lucky money and new clothes are necessary for New Year, but as the advance of the age, will be more and more found that those things are optional; Junior high ... 阅读全文
posted @ 2018-03-26 21:56 186-叶晓钿 阅读(140) 评论(0) 推荐(0) 编辑
摘要:# -*- coding:utf-8 -*- from turtle import * def mygoto(x,y): up() goto(x,y) down() def drawStar(r): begin_fill() for i in range(5): forward(r) right(144) end_... 阅读全文
posted @ 2018-03-20 10:49 186-叶晓钿 阅读(78) 评论(0) 推荐(0) 编辑
摘要:cd命令:切换目录 (1)切换到目录 /usr/local cd/usr/local (2)去到目前的上层目录 cd .. (3)回到自己的主文件夹 cd ~ ls命令:查看文件与目录 (4)查看目录/usr下所有的文件 #Is /usr mkdir命令:新建新目录 (5)进入/tmp目录,创建一个 阅读全文
posted @ 2018-03-14 15:11 186-叶晓钿 阅读(471) 评论(0) 推荐(0) 编辑
摘要:1.试述大数据对思维方式的重要影响 大数据对数据的计算模式主要分为批处理计算,流计算,图计算和查询分析计算,这些计算模式通过对不用的数据模式进行处理,得到不同的结果。而这些结果,恰恰有助于我们对数据进行分析和利用,相比百分之十的结构化数据,这些数据具有更好的精准性和思维理性。也有助于我们对未来做出预 阅读全文
posted @ 2018-03-07 15:56 186-叶晓钿 阅读(132) 评论(0) 推荐(0) 编辑