- Secret Recipes of the Python Ninja
- Cody Jackson
- 70字
- 2021-06-25 22:14:46
How to do it...
- The most basic command to execute a Python program is as follows:
$ python <script_name>.py
- The following examples show how to launch specific versions of Python, as needed:
$ python2 some_script.py # Use the latest version of Python 2
$ python2.7 ... # Specifically use Python 2.7
$ python3 ... # Use the latest version of Python 3
$ python3.5.2 ... # Specifically use Python 3.5.2
推薦閱讀
- HTML5+CSS3基礎開發教程(第2版)
- Building a Recommendation Engine with Scala
- Python編程與幾何圖形
- Drupal 8 Module Development
- Node.js全程實例
- SQL經典實例(第2版)
- JSP程序設計實例教程(第2版)
- Natural Language Processing with Python Quick Start Guide
- 愛上C語言:C KISS
- Mastering HTML5 Forms
- UX Design for Mobile
- Python預測分析實戰
- Maven for Eclipse
- Mapping with ArcGIS Pro
- Socket.IO Cookbook