上一页 1 ··· 28 29 30 31 32 33 34 35 36 ··· 186 下一页
摘要: 数据导出.变量名保存到EXCEL文件中第一行,导出含值标签的变量的数值而不是值标签 export excel using "D:\statashu\cgss\0504.xls", firstrow(variables) nolabel file D:\statashu\cgss\0504.xls s 阅读全文
posted @ 2023-05-04 15:37 myrj 阅读(763) 评论(0) 推荐(0)
摘要: https://kdown.fkxz.cn/wp-content/uploads/2021/09/1672392210-jpbjcnkcffbooppibceonlgknpkniiff-2.9.992.crx 阅读全文
posted @ 2023-05-04 07:32 myrj 阅读(179) 评论(0) 推荐(0)
摘要: 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 阅读(43) 评论(0) 推荐(0)
摘要: EXCEL 单元格一串数字,显示科学计数法,选择相应单元格列,选择数值,小数位数为0 阅读全文
posted @ 2023-05-01 07:55 myrj 阅读(517) 评论(0) 推荐(0)
摘要: 新版的Edge就是自带智能复制(Ctrl+Shift+X) 阅读全文
posted @ 2023-04-30 22:04 myrj 阅读(18) 评论(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 阅读(20) 评论(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 阅读(18) 评论(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 阅读(30) 评论(0) 推荐(0)
摘要: Python中可以使用pyodbc模块连接Microsoft Access数据库(.mdb格式)。 首先需要先安装pyodbc模块和Microsoft Access驱动程序,可以使用pip安装pyodbc: ``` pip install pyodbc ``` 然后需要下载安装Microsoft A 阅读全文
posted @ 2023-04-29 16:55 myrj 阅读(1360) 评论(0) 推荐(0)
摘要: Python 中,可以使用标准库 sqlite3 来读写 SQLite 数据库。 下面是一个示例代码,展示如何连接到 SQLite 数据库,创建表格,插入数据,查询数据和关闭数据库: import sqlite3 # 连接到数据库 conn = sqlite3.connect('example.db 阅读全文
posted @ 2023-04-29 16:48 myrj 阅读(317) 评论(0) 推荐(0)
上一页 1 ··· 28 29 30 31 32 33 34 35 36 ··· 186 下一页