08 2021 档案
摘要:https://www.cnblogs.com/xingag/p/15196124.html 1. 前言 大家好,我是安果! 一提到自动化,可能大家想到的是 App 端的 Appium、Airtest、AutoJS,亦或是 Selenium、Puppeteer、Cypress 等 Web 端的自动化
阅读全文
摘要:docmd.openformdocmd.runsqldocmd.close Access在窗体间传递参数的几种常用办法 在Office Access 实际开发应用中,常常需要在窗体间传递参数。把我10多年为企业开发Access管理系统过程中的一些经验总结了一下。 常用的几种参数传递方法有如下几种:
阅读全文
摘要:import win32com.client as win32 import pythoncom pythoncom.CoInitialize() def send_mail(**kwargs): outlook = win32.Dispatch('Outlook.Application') rec
阅读全文
摘要:string .encode("utf-8").decode("latin1")
阅读全文
摘要:import itertools def twentyfour(cards): '''史上最短计算24点代码''' results = [] for nums in itertools.permutations(cards): # 四个数 for ops in itertools.product('
阅读全文