码迷,mamicode.com
首页 >  
搜索关键字:surface book    ( 5453个结果
tp5控制器增删改查
// $data=['type'=>'专辑']; 构造数据 // db('book')->insert($data); 添加 // Db::name('book')->insert($data); // $userId = Db::name('book')->getLastInsID();添加主键i ...
分类:其他好文   时间:2020-07-07 18:02:42    阅读次数:57
pygame.sprite.Group
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
Python办公自动化 | EXCEL读取和写入
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
Probability materials
Beta distribution Probability Gamma distribution Commonly used distributions Commonly used stochastic processes Tangent cone, Tangent cone 2 ...
分类:其他好文   时间:2020-07-07 09:28:05    阅读次数:58
Python xlrd模块导入过程及常用操作
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
Python xlrd模块导入过程及常用操作
简介 读取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
Python文档管理与格式化工具
[TOC]## 1. 代码格式化### 1.1. autopep8```pip install autopep8```简单使用:`autopep8 -aa `+ `-aa` 表示代码侵入性级别。这里解释一下侵入性aggressive。 - 当不使用 `--aggressive` 选项时,`autop... ...
分类:编程语言   时间:2020-07-03 21:11:09    阅读次数:83
复习回顾--Django
Django回顾 1 web应用,http协议,web框架 # ip+端口号唯一确定一个应用 # web框架是什么 C/S B/S 三次握手,四次挥手 # http协议 无状态,基于请求和相应,是在TCP/IP协议之上的应用层的协议,短链接 响应状态码 1xx 请求等待处理 2xx 请求成功 3xx ...
分类:其他好文   时间:2020-07-02 19:55:50    阅读次数:56
PAT 1045 Favorite Color Stripe (30分) 动态规划
题目 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
UriComponentsBuilder和UriComponents url编码
Spring MVC 提供了一种机制,可以构造和编码URI -- 使用UriComponentsBuilder和UriComponents。 功能相当于 urlencode()函数,对url进行编码, 但同时还支持变量替换。 UriComponents uriComponents = UriComp ...
分类:Web程序   时间:2020-07-02 18:38:24    阅读次数:119
5453条   上一页 1 ... 15 16 17 18 19 ... 546 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!