#!"c:\python310\python.exe" # she-bang line: location of the interpreter. from datetime import datetime import warnings warnings.filterwarnings('ignore') # enable debugging import cgitb cgitb.enable() print("Content-Type: text/html;charset=utf-8") print() print("Hello World!") # Get current local time in ISO format now = datetime.now() formatted_time = now.strftime("%Y-%m-%d %H:%M:%S") print(f"Formatted Time (24h): {formatted_time}") print("")