摘要: 1.选一个自己感兴趣的主题。网址为http://news.gzcc.cn/html/xiaoyuanxinwen/ 2.网络上爬取相关的数据 3.进行文本分析,生成词云。 4.结论,当前时间段主要新闻内容以新生入学和十九大的召开为主。 阅读全文
posted @ 2017-11-01 15:41 16彭庆聪 阅读(202) 评论(0) 推荐(0) 编辑
摘要: 1.中软国际华南区技术总监曾老师还会来上两次课,同学们希望曾老师讲些什么内容?(认真想一想回答) 2.中文分词(**两项选做,此次作业要求不能雷同。) 下载一中文长篇小说,并转换成UTF-8编码。使用jieba库,进行中文词频统计,输出TOP20的词及出现次数。 **排除一些无意义词、合并同一词。 阅读全文
posted @ 2017-09-25 21:18 16彭庆聪 阅读(109) 评论(0) 推荐(0) 编辑
摘要: 1.实例:输出12个星座符号,以反斜线分隔。 1 2 for i in range(12): print(chr(9800+i),end="/") 1 2 for i in range(12): print(chr(9800+i),end="/") 1 2 for i in range(12): p 阅读全文
posted @ 2017-09-18 21:45 16彭庆聪 阅读(114) 评论(0) 推荐(0) 编辑
摘要: 1.Hello World! 2.简单交互(交互式,文件式)教材P19 3.用户输入两个数字,计算并输出两个数字之和: 4.用户输入三角形三边长度,并计算三角形的面积: 5.输入圆的半径,计算圆的面积。 6.画一组同切圆 7.画一个五角星 8.画一个黄色的五角星 阅读全文
posted @ 2017-09-06 12:22 16彭庆聪 阅读(222) 评论(0) 推荐(0) 编辑
摘要: 《英雄联盟》(简称LOL)是由美国拳头游戏(Riot Games)开发、中国大陆地区腾讯游戏代理运营的英雄对战MOBA竞技网游。游戏里拥有数百个个性英雄,并拥有排位系统、天赋系统、符文系统等特色养成系统。 《英雄联盟》还致力于推动全球电子竞技的发展,除了联动各赛区发展职业联赛、打造电竞体系之外,每年 阅读全文
posted @ 2017-09-04 18:03 16彭庆聪 阅读(148) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h> #include<stdlib.h> #define N 100 typedef struct process { int num; int time; int start; int end; int begin; int freetime; int arrive 阅读全文
posted @ 2016-06-19 18:42 16彭庆聪 阅读(174) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h> #include<stdlib.h> #define N 100 typedef struct process { int num; int time; int start; int end; int begin; int freetime; int arrive 阅读全文
posted @ 2016-06-19 18:40 16彭庆聪 阅读(566) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h> #include<stdlib.h> #define N 100 typedef struct process { int num; int time; int start; int end; int begin; int freetime; int arrive 阅读全文
posted @ 2016-06-16 22:04 16彭庆聪 阅读(535) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h> #include<stdlib.h> #define N 100 typedef struct process { int time; char name; int end; int freetime; int arrivetime; int finish; in 阅读全文
posted @ 2016-06-16 22:00 16彭庆聪 阅读(168) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h> #define N 10 typedef struct process { char name; int arrive; int prio; int needTime; char state; }Process; Process a[N]; void input( 阅读全文
posted @ 2016-06-16 21:56 16彭庆聪 阅读(345) 评论(0) 推荐(0) 编辑