Initial commit.

This commit is contained in:
Johannes Findeisen 2024-02-07 09:27:22 +01:00
commit 317e1b4e10
13 changed files with 260 additions and 0 deletions

16
python/python.py Executable file
View file

@ -0,0 +1,16 @@
---
permalink: /cgi/python/index.py
---
from datetime import datetime
from pprint import pprint
print("Hello from Python!")
print("")
print('print(datetime.today().strftime("%Y-%m-%d"))')
print(datetime.today().strftime('%Y-%m-%d'))
print("")
print("for i in range(1, 11): print(i);")
for i in range(1, 11): print(i);