摘要:
import sqlite3 def CreateDataBase(): try: db =sqlite3.connect("taobao.db") except: print("创建数据库失败") try: db.execute('create table GoodMsg(id varchar(1 阅读全文
摘要:
#coding=utf-8 print("你好,我是测试文件") def Texts(): return [6, 2, 3, 1, 5, 4] using IronPython.Hosting; namespace LanguageCall { class Program { static void 阅读全文
摘要:
import requests import bs4 from bs4 import BeautifulSoup def getHTMLText(url): try: r=requests.get(url ) r.raise_for_status() r.encoding=r.apparent_en 阅读全文
摘要:
from selenium import webdriver import time driver=webdriver.Chrome() driver.get('https://www.icourse163.org') button1=driver.find_element_by_xpath('/h 阅读全文
摘要:
import os import xlrd import pandas as pd import tkinter as tk from tkinter import filedialog root = tk.Tk() root.title("Excel处理") root.geometry('700x 阅读全文
摘要:
import requests import json page=1 while True: url='http://www.kfc.com.cn/kfccda/ashx/GetStoreList.ashx?op=cname' data={ 'cname':'广州', 'pageIndex': pa 阅读全文