实现鼠标一直运动

1. 安装好Python和pip,并保证二者能够正常使用;

2. 使用下方命令安装指定版本的 `pyautogui`库:

```

pip install pyautogui==0.9.50

```

 

3. 撰写下方代码:

```python

import pyautogui import random import time

while True:     x = random.randint(-200, 200)     y = random.randint(-200, 200)     pyautogui.moveRel(x, y)     time.sleep(5)

```

4. 运行写入上方代码的脚本,即可看到效果。

 

<br>

 

<br>

 

<br>

作者:艾孜尔江

上一篇:【PSD: Principled Synthetic-to-Real Dehazing Guided by Physical Priors】(个人笔记,勿喷)


下一篇:python向mysql插入数据一直报TypeError: must be real number,not str