11 2018 档案
跟我学算法 - 读取excel文件(xlrd)
摘要:import xlrd import numpy as np # fname 表示文件名 fname = '1白.xlsx'# 打开文件 bk = xlrd.open_workbook(fname)# 获取表格的个数 shxrange = bk.nsheets cast = []# 取第2个表格到最后一个表格 for i in range(1, shxrange): sh = bk.sh... 阅读全文
posted @ 2018-11-27 11:18 python我的最爱 阅读(240) 评论(0) 推荐(0)
解决pip安装时的Readtime out问题
摘要:方法一 pip --default-timeout=100 install -U Pillow就可以了方法二 pip install pyinstaller -i https://pypi.doubanio.com/simple指定网站 阅读全文
posted @ 2018-11-09 10:54 python我的最爱 阅读(444) 评论(0) 推荐(0)