diff --git a/Numbers/alarm.py b/Numbers/alarm.py new file mode 100644 index 000000000..b80f10844 --- /dev/null +++ b/Numbers/alarm.py @@ -0,0 +1,22 @@ +""" +Alarm Clock - A simple clock where it plays a sound after +X number of minutes/seconds or at a particular time. +""" + +import time +import winsound + +if __name__ == '__main__': + hh = input('What hour do you want to wake up (0-23)? ') + mm = input('What minute do you want to wake up (0-59)? ') + + not_alarmed = 1 + + while(not_alarmed): + cur_time = list(time.localtime()) # get the time right now + hour = cur_time[3] # find the hour + minute = cur_time[4] # and the minute + if hour == hh and minute == mm: + winsound.Beep(10000, 100) # play the beep + not_alarmed = 0 # stop the loop +