create table EGMAS_COUNT_DATA(TIMES date not null, COUNT NUMBER(30) not null, SYSTEM_NAME VARCHAR2(30) not null, Operation_index VARCHAR2(30) not null);-- Add comments to the columns comment on column EGMAS_COUNT_DATA.TIMES is '日期';comment on c…
import requests from bs4 import BeautifulSoup import random import openpyxl xls=openpyxl.Workbook() sheet=xls.active sheet.title='movies' sheet['A1']='序号' sheet['B1']='名称' sheet['C1']='评分' sheet['D1']='推荐语' sheet['E1']='链接' for i in range(11): params…