Printing Python version in output

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.

Leave a Comment