cgi/python/python.py

19 lines
440 B
Python
Raw Normal View History

2024-02-07 09:27:22 +01:00
---
permalink: /cgi/python/index.py
---
from datetime import datetime
#from http import HTTPStatus
2024-02-16 02:47:32 +01:00
#from pprint import pprint
2024-02-07 09:27:22 +01:00
print("Content-type: text/plain\n")
#print(HTTPStatus.OK.value)
2024-02-07 09:27:22 +01:00
print("Hello from Python!")
print("")
2024-02-16 02:47:32 +01:00
print('print(datetime.today().strftime("%a %b %d %H:%M:%S %Y"))')
print(datetime.today().strftime('%a %b %d %H:%M:%S %Y'))
2024-02-07 09:27:22 +01:00
print("")
print("for i in range(1, 11): print(i);")
for i in range(1, 11): print(i);