上一页 1 ··· 40 41 42 43 44 45 46 47 48 ··· 378 下一页
摘要: import re,sys,time,os,requests from selenium.webdriver.common.by import By from selenium.webdriver.support.ui import WebDriverWait from selenium.webdr 阅读全文
posted @ 2023-04-30 06:28 myrj 阅读(49) 评论(0) 推荐(0)
摘要: 1、引入 from selenium import webdriver from selenium.webdriver import ActionChains # 滑动验证码 from selenium.webdriver.common.by import By #按照什么方式查找,By.ID,By 阅读全文
posted @ 2023-04-30 05:54 myrj 阅读(50) 评论(0) 推荐(0)
摘要: Python中可以使用pyodbc模块连接Microsoft Access数据库(.mdb格式)。 首先需要先安装pyodbc模块和Microsoft Access驱动程序,可以使用pip安装pyodbc: ``` pip install pyodbc ``` 然后需要下载安装Microsoft A 阅读全文
posted @ 2023-04-29 16:55 myrj 阅读(1531) 评论(0) 推荐(0)
摘要: Python 中,可以使用标准库 sqlite3 来读写 SQLite 数据库。 下面是一个示例代码,展示如何连接到 SQLite 数据库,创建表格,插入数据,查询数据和关闭数据库: import sqlite3 # 连接到数据库 conn = sqlite3.connect('example.db 阅读全文
posted @ 2023-04-29 16:48 myrj 阅读(346) 评论(0) 推荐(0)
摘要: import sqlite3 # 连接到SQLite3数据库 conn = sqlite3.connect('example.db') # 创建一个表 conn.execute('''CREATE TABLE IF NOT EXISTS users (id INTEGER PRIMARY KEY A 阅读全文
posted @ 2023-04-28 19:55 myrj 阅读(59) 评论(0) 推荐(0)
摘要: import smtplib from email.mime.text import MIMEText from email.mime.multipart import MIMEMultipart from email.mime.image import MIMEImage # 邮件发件人和收件人信 阅读全文
posted @ 2023-04-28 19:52 myrj 阅读(213) 评论(0) 推荐(0)
摘要: 一个让你可以跟 GitHub 仓库进行对话的 Python 工具:Chat-with-GitHub-Repo。仓库包含两个 Python 脚本,演示如何使用 Streamlit、OpenAI GPT-3.5-turbo 和 Deep Lake 来创建 AI 聊天机器人。聊天机器人搜索存储在 Deep 阅读全文
posted @ 2023-04-28 19:38 myrj 阅读(60) 评论(0) 推荐(0)
摘要: EXCEL快速删除所有空行:1.全选所有单元格,包括空行2.筛选3.点“向下箭头”,去掉全选,只选择“空行”选项4.删除即可将所有相关空行删除 阅读全文
posted @ 2023-04-28 07:08 myrj 阅读(521) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2023-04-28 06:49 myrj 阅读(22) 评论(0) 推荐(0)
摘要: U盘拒绝访问解决方法:gpedit.msc用户配置--管理模板--系统--可移动存储访问--所有可移动存储类:拒绝所有权限--未配置--应用即可 阅读全文
posted @ 2023-04-27 12:28 myrj 阅读(421) 评论(0) 推荐(0)
上一页 1 ··· 40 41 42 43 44 45 46 47 48 ··· 378 下一页