MySQL学习-总结1 Posted on 2018-06-28 | In MySQL | Visitors: 数据库命令创建:create database 数据库名 charset=utf8;删除:drop database 数据库名;查看:show databases;使用:use 数据库名; 表命令创建:create table 表名 (列…);唯一标识的要求:id ... Read more »
等风来 Posted on 2018-06-05 | In 随记 | Visitors: 阳台上的豆角长出来了,撒种子那几天一直关注也没什么变化,忽然就盎然起来,这肯定少不了我妈不断地浇水,而我只是旁观。前两天看娃的时候,她要从床上下去,我在床边蹲护着,她用小脚丫尝试找支撑,试了几次都触碰不了地面,扭头把手伸向我,我后退了一步,她见状继续用脚试探,慢慢踩到了床垫与床板间的错位面,靠着这个 ... Read more »
商务与经济统计第二章Pelican商店习题 Posted on 2018-06-05 | In 商务与经济统计 | Visitors: 1234567import numpy as npimport pandas as pdpd.options.display.max_rows = 10import matplotlib.pyplot as pltplt.rcParams['font.sans-serif'] = ['SimHei' ... Read more »
格式化字符串用法 Posted on 2018-05-30 | In python | Visitors: python中字符串格式化方式除了%还有更广泛的format方式,简单易用.本文除了介绍format基本用法,还有其简化方式. 基本用法'hello,{0}'.format('world !') #引用第一个参数输出'hello, world !' & ... Read more »
picture储存到githuub生成url Posted on 2018-05-26 | In github | Visitors: windows下的使用 【第一步】新建github仓库在github首页右上角,点击 + 图标,再选择New repository. 进入新建仓库的界面 填好之后,点Create repository就行了.【第二步】克隆仓库创建存放git仓库文件夹按住shirft+右键,选择Git Bush He ... Read more »
python整理-基础知识3 Posted on 2018-05-26 | In python | Visitors: 基础知识3 >for循环>>Pythonfor循环可以遍历任何序列的项目,如一个列表或者一个字符串。for iterating_var in sequence: statements(s)>>流程图: >>对序列元素遍历>> ... Read more »
python整理-基础知识2 Posted on 2018-05-26 | In python | Visitors: 基础知识2>字典>>列表是有序的对象结合,字典是无序的对象集合。两者之间的区别在于:字典当中的元素是通过键来存取的,而不是通过偏移存取.>>创建字典1、ex_dic={'zifuchuan':123,1:123,'1':123,2: ... Read more »