Write a program to Send Unlimited Messages on What'sApp by Using 'Python'
'''Write a program to Send Unlimited Messages on whats app by Using Python'''
import time
import pyautogui as py
import time as t
time.sleep(10)
a = input("Enter any Message:-")
b = int(input("Enter size :-"))
for i in range(b):
py.write(a)
py.press("Enter")
Comments
Post a Comment