Code an alarm clock using Python! ⏰

Publicado em: 11 Agosto 2024
no canal de: Bro Code
21,993
566

#python #pythontutorial #pythoncourse

Python Alarm Clock
import time
import datetime
import pygame


def set_alarm(alarm_time):
print(f"Alarm set for {alarm_time}")
sound_file = "my_music.mp3"
is_running = True

while is_running:
current_time = datetime.datetime.now().strftime("%H:%M:%S")
print(current_time)

if current_time == alarm_time:
print("WAKE UP! 😴")

pygame.mixer.init()
pygame.mixer.music.load(sound_file)
pygame.mixer.music.play()

while pygame.mixer.music.get_busy():
time.sleep(1)

is_running = False

time.sleep(1)


if _name_ == "__main__":
alarm_time = input("Enter the alarm time (HH:MM:SS): ")
set_alarm(alarm_time)


Nesta página do site você pode assistir ao vídeo on-line Code an alarm clock using Python! ⏰ duração hora minuto segundo em boa qualidade , que foi baixado pelo usuário Bro Code 11 Agosto 2024, compartilhe o link com seus amigos e conhecidos, no youtube este vídeo já foi visto 21,993 vezes e gostou 566 espectadores. Boa visualização!