PracticeDev/study_python/click.py

20 lines
279 B
Python
Raw Normal View History

2022-12-20 17:31:11 +08:00
#!/usr/bin/python
#coding=utf8
"""
# Author: lkong
# Created Time : 2021-10-27 23:31:31
# File Name: click.py
# Description:
"""
import pyautogui
import time
count = 0
while True:
pyautogui.click()
print('The count is:', count)
count = count + 1
time.sleep(5)