Untitled

 avatar
unknown
plain_text
5 months ago
186 B
3
Indexable
from datetime import datetime

def get_current_time():
    current_time = datetime.now()
    return current_time.strftime("%I:%M %p")

print(f"The current time is: {get_current_time()}")
Editor is loading...
Leave a Comment