Skip to content

Commit befa136

Browse files
committed
Add Alarm clock & acronyms generator
1 parent e059eb1 commit befa136

File tree

12 files changed

+64
-0
lines changed

12 files changed

+64
-0
lines changed
-20.8 KB
Binary file not shown.

06 - Tic-Tac-Toe/tictactoe.py

Whitespace-only changes.

Acronyms Creator/Acronyms Creator.py

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Taking user input
2+
user_input = input("Enter a phrase: ")
3+
4+
# Spiliting the user input into individual words using split() method
5+
phrase = user_input.split()
6+
7+
# Initializing an empty string to append the acronym
8+
a = ""
9+
10+
# for loop to append acronym
11+
for word in phrase:
12+
a = a + word[0].upper()
13+
14+
print(a)

Alarm Clock/Alarm Clock.py

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
# Importing required libraries
2+
from datetime import datetime #To set date and time
3+
from playsound import playsound #To play sound
4+
5+
def validate_time(alarm_time):
6+
if len(alarm_time) != 11:
7+
return "Invalid time format! Please try again..."
8+
else:
9+
if int(alarm_time[0:2]) > 12:
10+
return "Invalid HOUR format! Please try again..."
11+
elif int(alarm_time[3:5]) > 59:
12+
return "Invalid MINUTE format! Please try again..."
13+
elif int(alarm_time[6:8]) > 59:
14+
return "Invalid SECOND format! Please try again..."
15+
else:
16+
return "ok"
17+
18+
while True:
19+
alarm_time = input("Enter time in 'HH:MM:SS AM/PM' format: ")
20+
21+
validate = validate_time(alarm_time.lower())
22+
if validate != "ok":
23+
print(validate)
24+
else:
25+
print(f"Setting alarm for {alarm_time}...")
26+
break
27+
28+
alarm_hour = alarm_time[0:2]
29+
alarm_min = alarm_time[3:5]
30+
alarm_sec = alarm_time[6:8]
31+
alarm_period = alarm_time[9:].upper()
32+
33+
while True:
34+
now = datetime.now()
35+
36+
current_hour = now.strftime("%I")
37+
current_min = now.strftime("%M")
38+
current_sec = now.strftime("%S")
39+
current_period = now.strftime("%p")
40+
41+
if alarm_period == current_period:
42+
print("done 1")
43+
if alarm_hour == current_hour:
44+
print("done 2")
45+
if alarm_min == current_min:
46+
print("done 3")
47+
if alarm_sec == current_sec:
48+
print("Wake Up!")
49+
playsound('D:/Library/Documents/Projects/Coding/Beginner Python Projects/Alarm Clock/alarm.wav')
50+
break

Alarm Clock/alarm.wav

2.03 MB
Binary file not shown.
File renamed without changes.
File renamed without changes.
File renamed without changes.

README.md

Whitespace-only changes.

0 commit comments

Comments
 (0)