1"""Imports the datetime package from the Python library"""
2from datetime import datetime
3
4"""Sets the variable now to the current date and time"""
5now = datetime.now()
6
7"""The variable current_time contains the string values of the current time"""
8current_time = now.strftime("%H:%M:%S")
9print("Current Time =", current_time)