##win10 does not come with python. Here are the steps to install python under win10:
Download
https://www.python.org/downloads/, open the following page, and download according to your own system and system version. Why are there two versions, 2.X and 3.X? There are some shortcomings in the development process of Python. Python 3 is a major upgrade. In order not to bring too much burden, the design of Python 3.x did not consider the issue of backward compatibility. Python 3.x and Python 2.x is now independent and maintained independently.
Python Video Tutorial"
Should I study version 2.x or version 3.x?As a newbie in Python, I chose 3.x without hesitation. The reason is simple: learn the new rather than learn from the old. Moreover, the 3.x version is becoming more and more popular. I believe that many packages from the previous 2.x version will slowly start to migrate to the 3.x version. As a beginner, I don’t want to be fooled by the encoding format too much.
Install the download packageIf you want to avoid the trouble of configuring environment variables, you can check the following picture on the installation interface, [Add Python 3.5 to PATH], and then click [Install Now] 】The installation is completed by default.
Environment variables
After installation, you can see it on my computer, right-click-->Properties--> Advanced system settings-->Environment variables, there is an additional [PATH] in the environment variables, double-click to open, as shown below, the environment variables have been automatically configured for us:Verify whether the installation is successful: Open the command line and enter the "python" command. If the following picture appears, it means the installation is successful:
The above is the detailed content of Does win10 come with python?. For more information, please follow other related articles on the PHP Chinese website!