How can I print the version number of the current Python installation from my script?
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.
2.1m questions
2.1m answers
60 comments
57.0k users