Mar 29, 2006 #1 miniwolle Instructor Joined Mar 29, 2006 Messages 1 Location 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 Joined Dec 20, 2001 Messages 195 Location US import the "time" module and use time.sleep(120). Use the print command to print the message. Upvote 0 Downvote