Test page
Published on Feb. 18, 2026

Hello World in Python

Copy
print("hello, world")
Docker example
Copy
FROM docker.io/python:latest

RUN apk whatever
PYTHONUNBUFFER 1

ENTRYPPOINT ["python"]
CMD ["main.py"]

Return to Home