

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Why is Python slower than other languages?
Python is a scripting language while C is a programming language. C/C++ is relatively fast as compared to Python because when you run the Python script, its interpreter will interpret the script line by line and generate output but in C, the compiler will first compile it and generate an output which is optimized with respect to the hardware. In case of other languages such as Java and.NET, Java bytecode, and .NET bytecode respectively run faster than Python because a JIT compiler compiles bytecode to native code at runtime. CPython cannot have a JIT compiler because the dynamic nature of Python makes it difficult to write one.
The Difference
As we know, Python is an interpreted language, while C is a compiled language. Interpreted code is always slower than direct machine code because it takes a lot more instructions in order to implement an interpreted instruction than to implement an actual machine instruction. Before actual work could be done by the program, Python instructions should be understood by the CPU. So the Python interpreter checks each statement according to the rules of the Python language such as allocation of memory for storage of the variables, straining out blank spaces and comments from the program and other related tasks. This process is repeated for each line of the program and adds significantly to the overhead of program execution.
C Is Quick
On the other hand, C does not spend much time on re-examining the source code and quickly converts into CPU commands. Before execution, a separate compiler converts human language program into CPU instructions, checks for errors, allocates memory and variables, stripes out comments and blanks, and optimizes the resulting instructions. The result of the compiled code is linked into other pre-made codes and as a result, you will get solid CPU commands, which are ready to perform the assigned job, without much preparation. Internally, the reason for Python code executing more slowly is that the code is interpreted at runtime instead of being compiled to a native code at compiling time.
- Related Questions & Answers
- Why is Java slower than C++ programs?
- Benefits of C over other languages
- Why is Sanskrit known as the mother of all languages?
- What is the difference between Java references and pointers in other languages?
- Why are some languages written left to right?
- Why bing image search is better than others
- Why China is way ahead than India in technology?
- What is filtered coffee? Is it any better than other forms of coffee?
- Why is git branching fast compared to other version control systems?
- Which statement, other than START TRANSACTION, is used for starting a transaction?
- Other than Insurance, which product gives me more return than Fixed Deposit?
- What is the difference between Imperative languages and Functional languages in compiler design?
- Database Languages
- Computer languages
- Why are women smarter than men?