摘要: Windows 安装Hadoop JAVA_HOME路径出现问题 阅读全文
posted @ 2019-04-08 16:57 大神是我啊 阅读(140) 评论(0) 推荐(0) 编辑
摘要: 连接mysql时1045出错,本质就是密码出错所造成的问题。 开始查看更改数据库密码 但是都失败了 最后发现 可以不用密码连接 如图: 在代码里 1为用户,2是密码为空 在navicat连接属性中密码为空即可 阅读全文
posted @ 2018-08-23 17:06 大神是我啊 阅读(377) 评论(0) 推荐(0) 编辑
摘要: 准备环境:安装bootstrap 1、https://v3.bootcss.com/ 点击下载Bootstrap,选择“用于生产环境的Bootstrap”下载 同时下载jQuery安装包,放到JS文件夹里面。 http://jquery.com/download/选择版本进行下载,点击以后是一个代码 阅读全文
posted @ 2018-08-20 17:40 大神是我啊 阅读(2034) 评论(0) 推荐(0) 编辑
摘要: 前端工程三个阶段: 第一阶段:库/框架选型 可以参照https://www.zhihu.com/question/35069742里面回答进行框架选择 另,http://www.bootcss.com/里面有关于bootstrap及其相关补充 第二阶段:简单构建优化(对代码进行压缩、校验,再以页面为 阅读全文
posted @ 2018-08-20 10:33 大神是我啊 阅读(110) 评论(0) 推荐(0) 编辑
摘要: 《疯狂动物城》 ——You see, that's the beauty of complacensy, Jude. 知足者常乐=content is happiness 。。。的妙处、好处 自我满足 ——If you don't try anything new, you'll never fai 阅读全文
posted @ 2018-08-14 21:30 大神是我啊 阅读(513) 评论(0) 推荐(0) 编辑
摘要: 一无所知 阅读全文
posted @ 2018-04-30 10:18 大神是我啊 阅读(111) 评论(0) 推荐(0) 编辑
摘要: 表达式(Expression)是运算符(operator)和操作数(operand)所构成的序列 表达式: >>> 1+2*37>>> a=1+2+3>>> a=1>>> b=int('1')+2>>> >>> a=1>>> b=2>>> c=3>>> print(a+b*c)7>>> a or b 阅读全文
posted @ 2018-03-13 20:58 大神是我啊 阅读(190) 评论(0) 推荐(0) 编辑
摘要: 做A*3+B+A运算: >>> [1,2,3,4,5,6]*3+[1,2,3,]+[1,2,3,4,5,6][1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 1, 2, 3, 4, 5, 6]>>> 引入变量!!!:名字= 阅读全文
posted @ 2018-03-12 10:53 大神是我啊 阅读(153) 评论(0) 推荐(0) 编辑
摘要: 表示组的方式: 列表: >>> type([1,2,3,4]) <class 'list'> >>> type([["hello"],["world"],[1,9,True,False]])<class 'list'> 列表基本操作方法:(与字符串截取相似) >>> ["新月打击","苍白之暴"," 阅读全文
posted @ 2018-03-09 17:21 大神是我啊 阅读(241) 评论(0) 推荐(0) 编辑
摘要: Alt+p :上一条命令 Alt+n:下一条命令 基本数据类型:int(整数) float(浮点) 输入 >>> type(2/2)输出 <class 'float'>>>> type(2//2)<class 'int'> >>> 2/21.0>>> 2//21>>> 1//20>>> 1/20.5 阅读全文
posted @ 2018-03-09 11:33 大神是我啊 阅读(164) 评论(0) 推荐(0) 编辑