diff --git a/reminder.py b/reminder.py new file mode 100644 index 0000000..e1bfc1b --- /dev/null +++ b/reminder.py @@ -0,0 +1,8 @@ +import time +print("What shall I remind you about?") +text=str(input()) +print("In how many minutes would you like me to remind you ?") +time.localtime=float(input()) +time.localtime=time.localtime*60 +time.sleep(time.localtime) +print(text)