1.thinkphp5配置自定义命令行 /application/console/command namespace app\console\command; use think\console\Command; use think\console\Input; use think\console\input\Argument; use think\console\input\Option; use think\console\Output; use app\autotask\task; cla…
import xlrd,xlwt,pickle,time,datetime book = xlrd.open_workbook("练习.xlsx") sheet1 = book.sheet_by_index(0) rownum=sheet1.nrows data=[] for i in range(4, rownum): if i >= 76: cls={} cls['name']=sheet1.cell_value(i,0).strip() data.append(cls) e…