Python – Printing Python version in output

python

How can I print the version number of the current Python installation from my script?

Best Answer

Try

import sys
print(sys.version)

This prints the full version information string. If you only want the python version number, then Bastien LĂ©onard's solution is the best. You might want to examine the full string and see if you need it or portions of it.