Home  >  Article  >  Backend Development  >  Python is a language developed by people from which country?

Python is a language developed by people from which country?

hzc
hzcOriginal
2020-07-02 13:41:547911browse

Python was designed by Guido van Rossum of Google. Python is a cross-platform computer programming language. As an object-oriented, dynamically typed language, it was originally designed for writing automation scripts.

Python is a language developed by people from which country?

# was designed by Guido van Rossum of Google.

Python is a cross-platform computer programming language. As an object-oriented, dynamically typed language, it was originally designed for writing automation scripts (shells). As versions are updated and new language features are added, it is increasingly used in independent, large-scale project development.

Python is a language that expresses simplicity. Reading a good python program is like reading English. It allows you to focus on solving problems rather than understanding the language itself.

However, according to the 80/20 rule, most programs do not need high speed. In some cases where speed requirements are high, Python designers tend to use JIT technology, or rewrite this part of the program in C/C language. The available JIT technology is PyPy.

Python is a language developed by people from which country?

The founder of Python is the Dutchman Guido van Rossum. During the Christmas period of 1989, in Amsterdam, Guido decided to develop a new script interpreter as an inheritance of the ABC language in order to kill the boredom of Christmas.

Python uses operators similar to C and Java, and supports mathematical operations on integers and floating point numbers. It also supports complex number operations and integer operations with infinite digits (actually limited by the computer's capabilities). Except for the absolute value function abs(), most mathematical functions are in the math and cmath modules. The former is used for real number operations, while the latter is used for complex number operations.

Recommended tutorial: "Python Tutorial"

The above is the detailed content of Python is a language developed by people from which country?. 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