摘要: 需要安装 pygame pip install pygame 如果想导出exe文件 需要安装pyinstaller pip install pyinstaller 导出exe命令: pyinstaller -F -w --add-data ./images;./images plane_main.p 阅读全文
posted @ 2021-06-29 17:21 陈扬天 阅读(110) 评论(0) 推荐(0) 编辑
摘要: import pyautogui from pynput.keyboard import Controller, Key, Listener # 监听按压 def on_press(key): try: print("正在按压:", format(key.char)) except Attribut 阅读全文
posted @ 2021-06-29 17:18 陈扬天 阅读(2015) 评论(0) 推荐(0) 编辑
摘要: import qrcode # 导入二维码的库 # 二维码的内容 content = 'https://www.baidu.com' # 使用qrcode库中的QRcode模块 qr = qrcode.QRCode() # 给二维码添加数据 qr.add_data(content) # 生成二维码 阅读全文
posted @ 2021-06-29 17:17 陈扬天 阅读(346) 评论(0) 推荐(0) 编辑