Home  >  Article  >  Backend Development  >  What does python3 mean?

What does python3 mean?

藏色散人
藏色散人Original
2019-06-27 11:15:549029browse

What does python3 mean?

python3 is the Python3.0 version, often called Python 3000, or Py3k for short. This is a major upgrade compared to earlier versions of Python. In order not to bring too much burden, Python 3.0 was not designed with backward compatibility in mind.

Check the python version

We can use the following command to check the Python version we are using in the command window (Windows uses win R to bring up the cmd run box):

python -V

The execution result of the above command is as follows:

Python 3.3.2

You can also enter the interactive programming mode of Python and check the version:

Python 3.3.2 (v3.3.2:d047928ae3f6, May 16 2013, 00:03:43) [MSC v.1600 32 bit (Intel)] on win32
Type "copyright", "credits" or "license()" for more information.
>>>

Related recommendations: "Python Tutorial

The above is the detailed content of What does python3 mean?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn