Initial commit.
This commit is contained in:
parent
a9c913c9a7
commit
317e1b4e10
13 changed files with 260 additions and 0 deletions
16
python/python.py
Executable file
16
python/python.py
Executable 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);
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue