Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

reminder application with notification in python

import time
print("What shall I remind you about?")
text = str(input())
print("In how many minutes?")
local_time = float(input())
local_time = local_time * 60
time.sleep(local_time)
print(text)
Source by hackernoon.com #
 
PREVIOUS NEXT
Tagged: #reminder #application #notification #python
ADD COMMENT
Topic
Name
1+5 =