Curriculum
In this tutorial, you will learn to find the Python version number installed in your Windows PC.
You can find the version number of the python installed in your windows in the following ways:
In windows, open your command prompt.
You can also find the version by using the python shell.
import sys sys.version_info
Note: