- Hands-On Penetration Testing with Python
- Furqan Khan
- 164字
- 2021-07-02 14:13:46
About Python – compiled or interpreted
Compilers work by converting human-readable code written in high-level programming languages into machine code, which is then run by the underlying architecture or machine. If you don't wish to run the code, the compiled version can be saved and executed later on. It should be noted that the compiler first checks for syntax errors and only creates the compiled version of the program if none are found. If you have used C, you might have come across .out files, which are examples of compiled files.
In the case of interpreters, however, each line of the program is taken and interpreted from the source code at runtime and then converted into machine code for execution. Python falls into the category of interpreted byte code. This means that the Python code is first translated to an intermediate byte code (a .pyc file). Then, this byte code is interpreted line by line by the interpreter and executed on the underlying architecture.
- UI圖標創意設計
- Instant Node Package Manager
- The Supervised Learning Workshop
- Java多線程編程實戰指南:設計模式篇(第2版)
- Java應用與實戰
- C語言程序設計(第2 版)
- 工程軟件開發技術基礎
- Spring技術內幕:深入解析Spring架構與設計
- Mastering Spring MVC 4
- Python 3網絡爬蟲實戰
- 云計算通俗講義(第3版)
- Learning FuelPHP for Effective PHP Development
- 實戰Java高并發程序設計(第2版)
- Natural Language Processing with Python Quick Start Guide
- ASP.NET Web API Security Essentials