-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.py
More file actions
15 lines (12 loc) · 687 Bytes
/
test.py
File metadata and controls
15 lines (12 loc) · 687 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>Developer Muhammad Zubair
import pyautogui #Must import pyautogui() using pip install pyautogui
import time
time.sleep(3) #Sleep will give you a time to move your cursor where you want
count =0;
while count<=5: #Enter number of count (Number of time you want to send message)
pyautogui.typewrite(f"Aya Maza{count}") #Enter any thing that you want to send (Put it in the .typwritr(?))
pyautogui.press("enter")
count=count+1
pyautogui.typewrite("Loop Developed By ZJ Developer")
pyautogui.press("enter")
#When you start this program the place where you cursor is it will print data the counts you want