Computer Science, asked by yashsinhtgb, 4 months ago

How do we make spam bot using python and you have to use only 5 lines? Do it!​

Answers

Answered by atrs7391
2

import time, pyautogui

time.sleep(15)

spw = "You are spammed"

n = 200

while n>0:

   pyautogui.typewrite(spw)

   pyautogui.press('enter')

   n = n-1

Similar questions