-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtimer.py
85 lines (78 loc) · 2.13 KB
/
timer.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
import datetime
from time import sleep, time, asctime
from winsound import MessageBeep
while True:
print("0==========0=================0=======0=======0")
print("¦ stopwach ¦ countdown timer ¦ clock ¦ alarm ¦")
print("¦ (1) ¦ (2) ¦ (3) ¦ (4) ¦")
print("0==========0=================0=======0=======0")
choice = input("Select an option ")
print("")
if choice == "1":
input("press enter to start")
before = time()
input("press enter to stop")
after = time()
print(str(round(after - before,2))+" S")
print("")
if choice == "2":
minuets = int(input("minuets"))
seconds = int(input("seconds"))
secc = 0
while minuets > 0 or seconds > 0:
print(str(minuets) + ":" + str(seconds))
secc += 1
seconds -= 1
sleep(1)
if seconds == 0 and minuets > 0:
seconds = 59
minuets -= 1
print("time up")
print("")
MessageBeep(0)
sleep(2)
MessageBeep(0)
sleep(2)
MessageBeep(0)
sleep(1)
MessageBeep(0)
sleep(1)
MessageBeep(0)
sleep(1)
MessageBeep(0)
sleep(0.5)
MessageBeep(0)
sleep(0.5)
MessageBeep(0)
sleep(0.5)
MessageBeep(0)
if choice == "3":
print(asctime()[11:16])
print(asctime()[0:10])
print("")
if choice == "4":
timeo = "0"
alarm = str(input("set alarm h:m"))
while timeo[:5] != alarm:
timev = datetime.datetime.time(datetime.datetime.now())
datetime.time(15, 8, 24, 78915)
timeo = str(timev)
sleep(1)
print("alarm")
MessageBeep(0)
sleep(2)
MessageBeep(0)
sleep(2)
MessageBeep(0)
sleep(1)
MessageBeep(0)
sleep(1)
MessageBeep(0)
sleep(1)
MessageBeep(0)
sleep(0.5)
MessageBeep(0)
sleep(0.5)
MessageBeep(0)
sleep(0.5)
MessageBeep(0)