Auto Programming With Python || How do You Automate a Programm Using Python || Fun with Python - Creation Code
Auto Programming with Python
In this post, we will create an auto program using python. In this auto program, we will send a message to your friend
Module to Be Used:
- pyautogui
- random
Code:
#creation code
import random
import pyautogui as pg
import time
text = ('like this video', 'subscribe')
time.sleep(10)
#creation code
for i in range (100):
t = random.choice(text)
pg.write('Please ' + t)
pg.press('enter')
Comments
Post a Comment