Mar 29, 2006 #1 miniwolle Instructor Mar 29, 2006 1 DK Hi. Can anyone tell me the python code for a simple countdown from eg. 2.00 minutes. It should be printet out to the screen. When it is finished it should write "Time is up" Hope you can help. Henrik
Hi. Can anyone tell me the python code for a simple countdown from eg. 2.00 minutes. It should be printet out to the screen. When it is finished it should write "Time is up" Hope you can help. Henrik
Apr 3, 2006 #2 ZaSter Technical User Dec 20, 2001 195 US import the "time" module and use time.sleep(120). Use the print command to print the message. Upvote 0 Downvote