摘要:
哎,,辛苦的一天,写了这些python题,,头疼 菜鸟一个 阅读全文
摘要:
总结了jupyter常用的快捷键 两种模式转换命令模式(Command mode )和 编辑模式(Edit mode)。 在一个cell中,按下Enter,进入Edit模式,按下Esc,进入Command 模式 命令模式下的快捷键: Enter:转入编辑模式 Ctrl+Home:定位到文件首 Ctrl+End:定位到文件尾 Shift+Enter:运行本单元,并定位到下一单元,新单元为编辑模式 ... 阅读全文
摘要:
import pandas as pd df = pd.read_excel('E://data//朝阳医院2018年销售数据.xlsx') df.head() #打印前五行 df.shape #有多少行,多少列 df.dtypes #查看每列的数据类型 colNameDict = {'购药时间':'销售时间'} #列名重命名 df.rename(columns = colN... 阅读全文
摘要:
-- 6、表中有ABC三列,当A列大于B列时选择A列否则选择B列,当B列大于C列时选择B列否则选择C列 create table abc( a int, b int, c int ); insert into abc values(22,24,23); select * from abc; create database gk; use gk; create table gaok... 阅读全文
摘要:
create database jingdong; use jingdong; create table tbl_clue( clue_id varchar(10), city_id varchar(10), price float, created_at datetime ); insert into tbl_clue values('1','10',100,'2016-6-7 15:33... 阅读全文
摘要:
create database ds; use ds; -- 建表导数--------------------------------------- -- UserInfo table create table userinfo( userid varchar(6) not null default '-', username varchar(20) not null de... 阅读全文