How can I print the version number of the current Python installation from my script?
import platform print(platform.python_version())
This prints something like
3.7.2