- Learning Python
- Fabrizio Romano
- 227字
- 2021-07-30 09:41:55
A note on the IDEs
Just a few words about Integrated Development Environments (IDEs). To follow the examples in this book you don't need one, any text editor will do fine. If you want to have more advanced features such as syntax coloring and auto completion, you will have to fetch yourself an IDE. You can find a comprehensive list of open source IDEs (just Google "python ides") on the Python website. I personally use Sublime Text editor. It's free to try out and it costs just a few dollars. I have tried many IDEs in my life, but this is the one that makes me most productive.
Two extremely important pieces of advice:
- Whatever IDE you will chose to use, try to learn it well so that you can exploit its strengths, but don't depend on it. Exercise yourself to work with VIM (or any other text editor) once in a while, learn to be able to do some work on any platform, with any set of tools.
- Whatever text editor/IDE you will use, when it comes to writing Python, indentation is four spaces. Don't use tabs, don't mix them with spaces. Use four spaces, not two, not three, not five. Just use four. The whole world works like that, and you don't want to become an outcast because you were fond of the three-space layout.
推薦閱讀
- Google Flutter Mobile Development Quick Start Guide
- Git Version Control Cookbook
- TypeScript入門與實戰
- 機器學習系統:設計和實現
- Java 9 Programming Blueprints
- 跟老齊學Python:輕松入門
- Java Web應用開發技術與案例教程(第2版)
- 用Python實現深度學習框架
- TypeScript項目開發實戰
- Cocos2d-x學習筆記:完全掌握Lua API與游戲項目開發 (未來書庫)
- Apache Spark 2.x for Java Developers
- Python算法指南:程序員經典算法分析與實現
- C# and .NET Core Test Driven Development
- Odoo 10 Implementation Cookbook
- 微前端設計與實現