Completed
Intro
Class Central Classrooms beta
YouTube videos curated by Class Central.
Classroom Contents
Python++ - Bringing Your Code to the Next Level
Automatically move to the next video in the Classroom when playback concludes
- 1 Intro
- 2 One Python environment per project ! Don't use the system environment
- 3 Stay ahead of Python's versions • Use Python 3 • Use a tool to manage environments
- 4 Use naming conventions Make an effort to find good names Introduce methods to increase readability
- 5 WRITING BEAUTIFUL CODE There is beauty in simplicity.
- 6 LESS IS MORE Write code that is both functional and simple Use Python idioms where you can Comment only what you cannot say in code
- 7 Encapsulate behaviour as well as state Use classes - The door to a whole new world
- 8 Python is a high-level programming language. Use an IDE.