Why does python run slowly?

silencement
Release: 2020-09-19 11:20:06
Original
13431 people have browsed it

We must have heard someone say before that python’s execution speed is slower than other languages.

Why does python run slowly?

The reasons why python runs slowly:

1, Python is a dynamic language, not a static language

This means that when the python program is executed, the compiler does not know the variables type. Figure 1. Shows the difference between variables in C language and variables in python. In C, the compiler knows the type of a variable when it is defined, but in python it only knows that it is an object when executed.

Why does python run slowly?


2, Python is an interpreted language rather than a compiled language

The differences between interpreted languages ​​and compiled languages ​​will also cause differences in the speed of program execution. . An intelligent compiler can predict and optimize for repetitive and unnecessary operations. This will also increase the speed of program execution.

3. Python’s object model will lead to inefficient memory access

In the above example, there is an extra layer of type information when operating on integers in Python compared to the C language. When there are a lot of integers and you want to perform some kind of batch operation, a list is often used in python, and a buffer-based array is used in C.

4、Why do we still use python

Since using python to process data is so inefficient, why do we still use python? Mainly because python is a dynamic language, it is easier to use than C, and its usage is more flexible and compatible, which can greatly save development time. Moreover, python is open source, cross-platform, and highly portable. In those situations where C or Fortran is really needed for optimization, python has powerful API or libraries to support it. This is why the use of Python has been growing in many scientific communities. So, Python ends up being an extremely effective language for the overall task of doing scientific research using code.

Related learning recommendations: python tutorial

The above is the detailed content of Why does python run slowly?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!