20 lines
279 B
Python
20 lines
279 B
Python
|
#!/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)
|