
基本操作
宸子涵
这个作者很懒,什么都没留下…
展开
-
Python QQ微信 快速发送消息
Python QQ/微信 快速发送消息 import time #导入时间库 from pynput.mouse import Button,Controller as mouse_cl #鼠标控制器 from pynput.keyboard import Key,Controller as key_cl #键盘控制器 def send_question(): #1.定位输入框的位置(鼠标左键点击来实现) mouse = mouse_cl() #获取鼠标控制器的权限 mo原创 2021-08-27 15:01:18 · 446 阅读 · 0 评论 -
Mysql基本语句
Mysql基本语句 一、查询语句 基本查询全部数据 select * from 表名; 基本查询单独字段 select name from 表名; 二、添加语句 基本添加 insert into 表名(id, name(要添加数据的字段)) values(1, '张三'); 三、删除语句 基本删除所有数据 delete from 表名; 基本删除指定数据 delete from 表名 where id = 1; # 删除id指定为1的所有数据,整行删除 ...原创 2021-08-26 04:28:52 · 92 阅读 · 0 评论