摘要:
import win32gui import win32con #获取所有窗口句柄 hwnd_title = {} def get_all_hwnd(hwnd, mouse): if (win32gui.IsWindow(hwnd) and win32gui.IsWindowEnabled(hwnd 阅读全文
摘要:
工作原理:popen先执行fork,然后调用exec执行cmdstring,并返回一个标准的I/O文件指针。 头文件:#include<stdio.h> 原型:FILE *popen(const char *cmdstring, const char *type) cmdstring:包含shell 阅读全文
摘要:
C 库函数 - strftime() 描述 C 库函数 size_t strftime(char *str, size_t maxsize, const char *format, const struct tm *timeptr) 根据 format 中定义的格式化规则,格式化结构 timeptr 阅读全文
摘要:
subprocess 模块允许我们启动一个新进程,并连接到它们的输入/输出/错误管道,从而获取返回值。communicate(input,timeout): 和子进程交互,发送和读取数据。import subprocess res=subprocess.Popen("python",stdin=su 阅读全文
摘要:
xpath helper下载 链接: https://pan.baidu.com/s/1uhWs_CxVTfU25VI5Md-CAg 提取码: wstj 不要将下载后的.crx直接拖入chrome://extensions/安装,会提示无效 下载后得到xpath-helper.crx,将其改变扩展名 阅读全文
摘要:
import asyncio import time async def shop(delay, what): print(what) await asyncio.sleep(delay) print(what,"...出来了") async def main(): task1 = asyncio. 阅读全文
摘要:
python实现截屏的两种方式 运行前请先安装相关的三方库 1.pyautogui 2.pillow import pyautogui pyautogui.screenshot("pyautogui.png") from PIL import ImageGrab ImageGrab.grab().s 阅读全文
摘要:
对于使用使用DOS的人来说,会使用DOS命令是最基本的,而在当今即将盛行的EFI BIOS来说,就有了新的变化,如何操作EFI Shell 呢?至此我贴出了EFI Shell 的命令供大家学习。 EFI是Extensible Firmware Interface的缩写,是介于平台固件和操作系统之间的 阅读全文
摘要:
命名捕获组 的格式是 (?p<name>...),其中 name 是组的名称,...是要匹配的表达式。它们的行为与正常组完全相同,除了可以通过索引访问还可以通过 group(name) 方式访问它们。非捕获组的格式是 (?:...)。 import re pattern = r"(?P<python 阅读全文
摘要:
单例模式(Singleton Pattern)是一种常用的软件设计模式,该模式的主要目的是确保某一个类只有一个实例存在。当你希望在整个系统中,某个类只能出现一个实例时,单例对象就能派上用场。 实现单例模式的几种方法 1. 使用模块 其实,python的模块就是天然的单例模式,因为模块在第一次导入的时 阅读全文