- ArcPy and ArcGIS:Geospatial Analysis with Python
- Silas Toms
- 191字
- 2021-07-23 20:23:07
What is a Python script?
Let's start with the very basics of writing and executing a Python script. What is a Python script? It is a simple text file that contains a series of organized commands written in a formalized language. The text file has the extension .py
, but other than that, there is nothing to distinguish it from any other text file. It can be opened using a text editor such as Notepad or Wordpad, but the magic that is Python does not reside in a Python script. Without the Python interpreter, a Python script cannot be run and the commands it contains cannot be executed.
How Python executes a script
Understanding how Python works to interpret a script and then execute the commands within is as important as understanding the Python language itself. Hours of debugging and error checking can be avoided by taking the time to set up Python correctly. The interpretive nature of Python means that a script will have to be first converted into bytecode before it can be executed. We will cover the steps that Python takes to achieve our goal of automating GIS analysis.
- C++程序設計教程
- DB2 V9權威指南
- OpenCV for Secret Agents
- 微服務設計原理與架構
- VMware vSphere 6.7虛擬化架構實戰指南
- Elastic Stack應用寶典
- 游戲程序設計教程
- Mastering JBoss Enterprise Application Platform 7
- Java EE 7 Performance Tuning and Optimization
- Learning Modular Java Programming
- 深度學習原理與PyTorch實戰(第2版)
- Java并發編程之美
- Vue.js 3應用開發與核心源碼解析
- RESTful Web API Design with Node.js(Second Edition)
- Developing RESTful Web Services with Jersey 2.0