This image is based on Alpine Linux image, which is only a 5MB image, and contains Python 3.x.
This image is only 71MB on disk.
$ docker run --rm frolvlad/alpine-python3 python3 -c 'print("Hello World")'
Once you have run this command you will get printed 'Hello World' from Python! Or use it interactivelly:
$ docker run -it --rm frolvlad/alpine-python3 python3
NOTE: pip
/pip3
is also available in this image.