Python tips and tricks.
#shorts #python #programming #coding
import time
from plyer import notification
if _name_ == "__main__":
while True:
notification.notify(
title = "ALERT!!!",
message = "Take a break!",
timeout = 10
)
time.sleep(3600)