Skip to content

Files

Latest commit

 

History

History

Alarm Clock

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Description

The provided script is a simple alarm clock that asks the user to input a time in the 'HH ' format. It continuously checks the current time and prints "Time to wake up!" when the specified time is reached.

Required Modules

The script requires the following Python standard library modules:

'datetime' 'time'

Since these are part of Python's standard library, you don't need to install any additional modules.

How to Run the Script

Step 1: Ensure Python is Installed Make sure Python is installed on your system. You can download it from python.org.

Step 2: Save the Script Save the script with a .py extension, for example, alarm_clock.py.

Step 3: Open a Terminal or Command Prompt Navigate to the directory where the script is saved.

Step 4: Run the Script Use the following command to run the script:

         python alarm_clock.py

Step 5: Set the Alarm When prompted, enter the time for the alarm in the format HH:MM. For example, to set an alarm for 7:30 AM, enter 07:30.