Search
 
SCRIPT & CODE EXAMPLE
 

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)
Comment

PREVIOUS NEXT
Code Example
Python :: plotly garden wing map 
Python :: how can i display the context data returned by the view in the template 
Python :: backslashing in an interactive session in python 
Python :: python vs python3 
Python :: add function name and line number in python log file 
Python :: fill turtle python 3 
Python :: string to 2d array python 
Python :: convert to string except missing 
Python :: python copy list from index 
Python :: How to Empty a Set in Python Using the clear() Method 
Python :: Créer un décorateur python 
Python :: Classe wrapper en python 
Python :: Python Tkinter Message Widget Syntax 
Python :: python this module 
Python :: Move Mouse Every Minute Using Python 3 & PyAutoGUI 
Python :: page views count django 
Python :: how to extends page in django 
Python :: from django.urls import reverse 
Python :: python convert string object to int object 
Python :: ValueError: minvalue must be less than or equal to maxvalue 
Python :: enumerate count 
Python :: linear plot 1D vector for x python 
Python :: python count down advanced 
Python :: Dizideki en son elemani alma 
Python :: how to save the command result with ! in python 
Python :: difference between = and is not python 
Python :: download face_cascade.detectMultiScale 
Python :: RuntimeError: input must have 3 dimensions, got 4 site:stackoverflow.com 
Python :: set shortcut for Qaction pyqt5 
Python :: python site-packages pyspark 
ADD CONTENT
Topic
Content
Source link
Name
6+5 =