摘要: # -*- coding: utf-8 -*- """ Created on Mon Sep 9 10:55:55 2019 @author: Administrator """ import os import requests import bs4 from bs4 import BeautifulSoup def main(): url = "http://www.zuihaodaxue.c 阅读全文
posted @ 2019-09-16 09:19 周围圆 阅读(351) 评论(0) 推荐(0) 编辑
摘要: import openpyxl # 读 def read16excel(path): # 实例化excel表 wb = openpyxl.load_workbook(path) # 创建新工作表 wb.create_sheet("Sheet2") # 查看sheet页名字 print(wb.sheetnames) # 通过索引定位sheet页 sheet = wb.worksheets[0] # 阅读全文
posted @ 2019-09-15 14:21 周围圆 阅读(412) 评论(0) 推荐(0) 编辑