SRIKAR B.S.S

Results 1 comments of SRIKAR B.S.S

``` import time from win10toast import ToastNotifier if __name__ == '__main__': while True: toaster = ToastNotifier() toaster.show_toast("Hello World!!!", "Python is 10 seconds awsm!", duration=10, icon_path='') time.sleep(2) ``` This is my...