// $data=['type'=>'专辑']; 构造数据 // db('book')->insert($data); 添加 // Db::name('book')->insert($data); // $userId = Db::name('book')->getLastInsID();添加主键i ...
分类:
其他好文 时间:
2020-07-07 18:02:42
阅读次数:
57
import pygame pygame.init() screen = pygame.display.set_mode((960, 800)) pygame.display.set_caption("pygame.sprite.Group") class sprite(pygame.sprite. ...
分类:
其他好文 时间:
2020-07-07 13:29:49
阅读次数:
76
1 import xlrd 2 import xlwt 3 4 5 xlsx = xlrd.open_workbook(r'D:\pycharm\learning\autowork\test.xlsx') 6 table = xlsx.sheet_by_index(0) 7 # table = xl ...
分类:
编程语言 时间:
2020-07-07 10:11:06
阅读次数:
97
Beta distribution Probability Gamma distribution Commonly used distributions Commonly used stochastic processes Tangent cone, Tangent cone 2 ...
分类:
其他好文 时间:
2020-07-07 09:28:05
阅读次数:
58
xlrd 模块方法 读取Excel file = 'route_info.xls' # 读取Excel信息,生成对象 read_book = xlrd.open_workbook(file) 获取sheet【表】相关方法,返回xlrd.sheet.Sheet()对象 sheet = read_boo ...
分类:
编程语言 时间:
2020-07-05 15:51:35
阅读次数:
60
简介 读取Excle文档,支持xls,xlsx格式 安装:pip3 install xlrd 导入:import xlrd xlrd 模块方法 读取Excel file = 'route_info.xls' # 读取Excel信息,生成对象 read_book = xlrd.open_workboo ...
分类:
编程语言 时间:
2020-07-04 13:20:57
阅读次数:
64
[TOC]## 1. 代码格式化### 1.1. autopep8```pip install autopep8```简单使用:`autopep8 -aa `+ `-aa` 表示代码侵入性级别。这里解释一下侵入性aggressive。 - 当不使用 `--aggressive` 选项时,`autop... ...
分类:
编程语言 时间:
2020-07-03 21:11:09
阅读次数:
83
Django回顾 1 web应用,http协议,web框架 # ip+端口号唯一确定一个应用 # web框架是什么 C/S B/S 三次握手,四次挥手 # http协议 无状态,基于请求和相应,是在TCP/IP协议之上的应用层的协议,短链接 响应状态码 1xx 请求等待处理 2xx 请求成功 3xx ...
分类:
其他好文 时间:
2020-07-02 19:55:50
阅读次数:
56
题目 Eva is trying to make her own color stripe out of a given one. She would like to keep only her favorite colors in her favorite order by cutting off ...
分类:
其他好文 时间:
2020-07-02 19:53:26
阅读次数:
70
Spring MVC 提供了一种机制,可以构造和编码URI -- 使用UriComponentsBuilder和UriComponents。 功能相当于 urlencode()函数,对url进行编码, 但同时还支持变量替换。 UriComponents uriComponents = UriComp ...
分类:
Web程序 时间:
2020-07-02 18:38:24
阅读次数:
119