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
'''爬取豆瓣top250书籍''' import requests import json import csv from bs4 import BeautifulSoup books = [] def book_name(url): headers = { 'User-Agent': 'Mozi ...
分类:
其他好文 时间:
2020-07-02 16:39:12
阅读次数:
70
http://os.itec.kit.edu/downloads/5_PriorityInversion.pdf https://www.skedsoft.com/books/real-time-systems/stack-based-priority-ceiling-protocol ...
分类:
其他好文 时间:
2020-07-01 22:00:42
阅读次数:
57