摘要: Sub PasswordRecovery() Dim i As Integer, j As Integer, k As Integer Dim l As Integer, m As Integer, n As Integer Dim i1 As Integer, i2 As Integer, i3 阅读全文
posted @ 2025-05-06 18:54 AZ26 阅读(235) 评论(0) 推荐(0)
摘要: import DrissionPage from DrissionPage.common import Actions, Keys driver = DrissionPage.ChromiumPage() driver.ele('xpath:').click.multi(times=2) 阅读全文
posted @ 2025-01-07 22:17 AZ26 阅读(51) 评论(0) 推荐(0)
摘要: import tkinter as tk from tkinter.scrolledtext import ScrolledText from tqdm import tqdm import itertools class MainWidget: def __init__(self): # 新建窗体 阅读全文
posted @ 2024-08-20 01:09 AZ26 阅读(39) 评论(0) 推荐(0)
摘要: import itertools def get_result(hope, list_input): """ :param hope: # 期望相加所得参数 :param list_input: # 所有数值 :return: """ def generate_combination(items, 阅读全文
posted @ 2024-08-06 21:39 AZ26 阅读(22) 评论(0) 推荐(0)
摘要: Sub CopyFilesToSheetsFromFolder() Dim selectedFile As Variant Dim targetWorkbook As Workbook Dim sourceWorkbook As Workbook Dim ws As Worksheet Dim fs 阅读全文
posted @ 2024-06-28 23:29 AZ26 阅读(94) 评论(0) 推荐(0)
摘要: import os.path from DrissionPage import ChromiumPage from DrissionPage import ChromiumOptions # 浏览器参数设置 co = ChromiumOptions() # 浏览器启动路径 co.set_browse 阅读全文
posted @ 2024-06-21 00:21 AZ26 阅读(1134) 评论(0) 推荐(0)
摘要: =XLOOKUP(A2,INDIRECT("Sheet1!"&VLOOKUP(MATCH("公司代码",Sheet1!1:1),Sheet1!S:T,2,0)&":"&VLOOKUP(MATCH("公司代码",Sheet1!1:1),Sheet1!S:T,2,0)),Sheet1!I:I,,0) 阅读全文
posted @ 2024-06-15 10:28 AZ26 阅读(66) 评论(0) 推荐(0)
摘要: import time import pandas as pd import openpyxl import openpyxl.cell._writer import os from tkinter.filedialog import * from tqdm import * # input('请在 阅读全文
posted @ 2024-06-10 21:01 AZ26 阅读(36) 评论(0) 推荐(0)
摘要: Public Function nihao() As String Application.ScreenUpdating = False '防止宏运行时屏幕抖动 Sheets("Sheet2").Activate Sheets("Sheet2").Select '选择Sheet1 Range("B1 阅读全文
posted @ 2024-06-04 22:16 AZ26 阅读(80) 评论(0) 推荐(0)
摘要: todo 迭代取出内容 with open(r"D:\Desktop\新建文件夹\PRD0000455772.TXT", 'r') as f: for i, x in tqdm(enumerate(f), total=num_file): time.sleep(0.001) 简化版 with ope 阅读全文
posted @ 2024-06-04 22:13 AZ26 阅读(34) 评论(0) 推荐(0)