摘要: 一、Hadoop提供的Shell命令完成相同任务: 1 2 3 4 mkdir hadoop cd hadoop ~/hadoop$ touch test.txt ~/hadoop$ gedit test.txt 1 2 3 4 mkdir hadoop cd hadoop ~/hadoop$ to 阅读全文
posted @ 2018-04-26 21:44 205李华秋 阅读(353) 评论(0) 推荐(0) 编辑
摘要: import requests from bs4 import BeautifulSoup from datetime import datetime import re import pandas import openpyxl import sqlite3 url = "http://news.gzcc.cn/html/xiaoyuanxinwen/" res = requests.ge... 阅读全文
posted @ 2018-04-17 23:45 205李华秋 阅读(97) 评论(0) 推荐(0) 编辑
摘要: 学会使用正则表达式 1. 用正则表达式判定邮箱是否输入正确。 import re r='^(\w)+(\.\w+)*@(\w)+((\.\w{2,3}){1,3})$' e='3947653@qq.com' if re.match(r,e): print(re.match(r,e).group(0) 阅读全文
posted @ 2018-04-10 17:27 205李华秋 阅读(114) 评论(0) 推荐(0) 编辑
摘要: news = '''In the modern Chinese history of fine arts education, Xu Beihong (1895~ 1953), is to adopt the western art long modern painting master, prodromal type of art educators. Xu Beihong was born ... 阅读全文
posted @ 2018-03-27 17:46 205李华秋 阅读(361) 评论(0) 推荐(0) 编辑
摘要: #字符串 s = 'HelloWorld' for i in s: print(i) # 列表 ls = ['Help', 'Make', 'PyCharm', 'Better'] for i in ls: print(i) # 元组 tup = tuple('tuple') for i in tup: print(i) # 字典 names = ['Help... 阅读全文
posted @ 2018-03-22 20:21 205李华秋 阅读(112) 评论(0) 推荐(0) 编辑
摘要: mport turtle def mygoto(x,y): turtle.up() turtle.goto(x,y) turtle.down(); def drawwjx(x): turtle.begin_fill() for i in range(5): turtle.forward(x) turtle.right(1... 阅读全文
posted @ 2018-03-20 15:21 205李华秋 阅读(174) 评论(0) 推荐(0) 编辑
摘要: 熟悉常用的Linux操作 请按要求上机实践如下linux基本命令。 cd命令:切换目录 (1)切换到目录 /usr/local cd /usr/local (2)去到目前的上层目录 cd /usr (3)回到自己的主文件夹 cd ~ ls命令:查看文件与目录 (4)查看目录/usr下所有的文件 ls 阅读全文
posted @ 2018-03-13 16:55 205李华秋 阅读(673) 评论(0) 推荐(0) 编辑
摘要: 1.试述大数据对思维方式的重要影响。 数据时代以前,人们的拒测依据往往依是经验以及感觉,缺少一个合理的标准,而且以前通常都是拿样本数据来作出推断,着重于因果关系的推断,而大数据是从整体出发,涵盖了所有数据,和以前因为无法获得全体数据有了巨大的改变,人类不再受限于特定的条件而做出无奈的选择,人们可以基 阅读全文
posted @ 2018-03-06 19:36 205李华秋 阅读(197) 评论(0) 推荐(0) 编辑
摘要: 实验一、词法分析实验 商业软件工程3班 李华秋 201506110205 一、 实验目的 编制一个词法分析程序。通过设计一个编译词法分析程序,实现对词法分析转换的理解,加深对转换过程的认识,通过这个软件把理论知识运用到实际之中。 二、 实验内容和要求 输入:源程序字符串 输出:二元组(种别,单词本身 阅读全文
posted @ 2016-10-12 22:57 205李华秋 阅读(251) 评论(5) 推荐(0) 编辑
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2016-09-30 18:46 205李华秋 阅读(4) 评论(1) 推荐(0) 编辑