- Secret Recipes of the Python Ninja
- Cody Jackson
- 176字
- 2021-06-25 22:14:46
Introduction
One of the benefits of the Python programming language is that it is interpreted, not compiled. This means that Python code is processed when it is called, rather than having to be pre-compiled before use. Because of this, interpreted languages generally have an interactive shell, allowing users to test code and otherwise have immediate feedback without having to create a separate source code file.
Of course, to get the most functionality out of a programming language, having permanent code files is necessary. When using an interactive prompt, the code lives in RAM; once the interactive session is closed, that code is lost. Thus, using an interactive prompt is a great way to quickly test programming ideas, but you wouldn't want to run a full-blown program from it.
This chapter will talk about using the Command Prompt to launch programs, as well as Python's functionality using the interactive shell. Special functionality with the Windows operating system will be discussed, and we will end by talking about alternative Python shells that developers may be interested in trying.
- PostgreSQL for Data Architects
- Rake Task Management Essentials
- PHP+MySQL網站開發技術項目式教程(第2版)
- Java開發入行真功夫
- Groovy for Domain:specific Languages(Second Edition)
- 假如C語言是我發明的:講給孩子聽的大師編程課
- JavaScript動態網頁編程
- Web App Testing Using Knockout.JS
- Tableau Desktop可視化高級應用
- Oracle Data Guard 11gR2 Administration Beginner's Guide
- Python機器學習與量化投資
- Head First Kotlin程序設計
- LabVIEW入門與實戰開發100例(第4版)
- Bitcoin Essentials
- Leaflet.js Essentials