- 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
推薦閱讀
- Unity 2020 By Example
- Getting Started with ResearchKit
- Java FX應用開發教程
- 編寫高質量代碼:改善C程序代碼的125個建議
- Building Android UIs with Custom Views
- SQL Server實用教程(SQL Server 2008版)
- Learning Docker Networking
- Spring 5 Design Patterns
- 青少年學Python(第2冊)
- 算法秘籍
- Drupal 8 Development Cookbook(Second Edition)
- 3D Printing Designs:Octopus Pencil Holder
- Mastering Unreal Engine 4.X
- Getting Started with Windows Server Security
- Spring MVC Blueprints