Information about this site

Published

Sunday, February 9, 2025

Code
from datetime import datetime

now = datetime.now()
formatted_date = now.strftime("%m-%d-%Y at %I:%M %p")
print(f"This file was last updated on {formatted_date}")
This file was last updated on 02-09-2025 at 07:00 AM