获取第一个工作表
import xlrd
data = xlrd.open_workbook('name.xlsx')
sheet = data.sheet_by_index(0)
获取sheet下的有效行数
import xlrd
data = xlrd.o...
yekong
3年前 (2021-08-21)
喜欢
import xlrd
data = xlrd.open_workbook('name.xlsx')
print(data.sheet_names())
获取所有工作表的名称
data.sheet_names()
获取所有工作表的数量
data.nshee...
yekong
3年前 (2021-08-21)
喜欢
读取xlsx文件时报错xlrd.biffh.XLRDError
最新的xlrd居然不支持Excel xlsx文件的读取。
方法一:
在调用read_excel()函数时,添加条件“engine='openpyxl'”,借助openpyxl库来读取xlsx文件。即:...
yekong
3年前 (2021-08-21)
喜欢
pip3 list
...
yekong
3年前 (2021-08-21)
喜欢
pip3 config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
再重新安装依赖秒过
...
yekong
3年前 (2021-08-21)
喜欢
主界面右侧点击database
输入地址 端口 用户 和 密码 点击test Connectioon测试连接 第一次可能会提示下载依赖组件直接确认就可以了
连接成功后就可以看到管理我们的数据库了
...
yekong
3年前 (2021-08-21)
喜欢
Flask
轻量级
Django
重
其他
Web2py
Bottle
...
yekong
3年前 (2021-08-21)
喜欢
@app.errorhandler(404)
def not_found(error):
app.logger.error(error)
return 'this page not find', 404
...
yekong
3年前 (2021-08-21)
喜欢
使用debug需要先开启debug
from flask import Flask
from api import route_api
app = Flask(__name__)
app.register_blueprint(route_api, url_prefix=&quo...
yekong
3年前 (2021-08-21)
喜欢
app.run(debug=True)
from flask import Flask
from api import route_api
app = Flask(__name__)
app.register_blueprint(route_api, url_prefix=...
yekong
3年前 (2021-08-21)
喜欢