上一页 1 ··· 31 32 33 34 35 36 37 38 39 ··· 188 下一页
摘要: gen tz=0 local vv pid_a_c1 pid_a_c2 pid_a_c3 pid_a_c4 pid_a_c5 pid_a_c6 pid_a_c7 pid_a_c8 pid_a_c9 pid_a_c10 local k=_N forvalues i=1/`k'{ local mm=0 阅读全文
posted @ 2023-05-02 17:47 myrj 阅读(65) 评论(0) 推荐(0)
摘要: EXCEL 单元格一串数字,显示科学计数法,选择相应单元格列,选择数值,小数位数为0 阅读全文
posted @ 2023-05-01 07:55 myrj 阅读(537) 评论(0) 推荐(0)
摘要: 新版的Edge就是自带智能复制(Ctrl+Shift+X) 阅读全文
posted @ 2023-04-30 22:04 myrj 阅读(27) 评论(0) 推荐(0)
摘要: from selenium import webdriver from selenium.webdriver import ActionChains from selenium.webdriver.common.by import By #按照什么方式查找,By.ID,By.CSS_SELECTOR 阅读全文
posted @ 2023-04-30 11:38 myrj 阅读(31) 评论(0) 推荐(0)
摘要: 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 阅读(36) 评论(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 阅读(45) 评论(0) 推荐(0)
摘要: Python中可以使用pyodbc模块连接Microsoft Access数据库(.mdb格式)。 首先需要先安装pyodbc模块和Microsoft Access驱动程序,可以使用pip安装pyodbc: ``` pip install pyodbc ``` 然后需要下载安装Microsoft A 阅读全文
posted @ 2023-04-29 16:55 myrj 阅读(1442) 评论(0) 推荐(0)
摘要: Python 中,可以使用标准库 sqlite3 来读写 SQLite 数据库。 下面是一个示例代码,展示如何连接到 SQLite 数据库,创建表格,插入数据,查询数据和关闭数据库: import sqlite3 # 连接到数据库 conn = sqlite3.connect('example.db 阅读全文
posted @ 2023-04-29 16:48 myrj 阅读(340) 评论(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 阅读(48) 评论(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 阅读(206) 评论(0) 推荐(0)
上一页 1 ··· 31 32 33 34 35 36 37 38 39 ··· 188 下一页