Skip to article frontmatterSkip to article content
Site not loading correctly?

This may be due to an incorrect BASE_URL configuration. See the MyST Documentation for reference.

Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!

In Shell

!python3 --version
Python 3.7.3

In Python

import sys

sys.version_info
sys.version_info(major=3, minor=7, micro=3, releaselevel='final', serial=0)
import platform

platform.python_version()
'3.7.3'