摘要:
import xlwt, xlrdfrom xlutils.copy import copybook = xlwt.Workbook() # 新建一个excelsheet = book.add_sheet('sheet1') # 添加一个sheet页sheet.write(0, 0, '姓名')sh 阅读全文
摘要:
import urllib.requestimport json,requests#发送get请求url = 'http://api.nnzhp.cn/api/user/stu_info?stu_name=小黑马'req = requests.get(url) #发送get请求print(req.t 阅读全文