Simple Tech Tutorials
Blog
About
Uncopyright
18 January 2014
How to Check Python Version
This tutorial shows you how to check what version of Python is running on your computer.
Open up IDLE, the default Python shell.
The top line should display the Python version as a number like 2.7.5
If it does not display at the top, then type: import sys
Then type: print (sys.version)
The line with the version number will be displayed.
Newer Post
Older Post
Home