What is clean code?
Lesson 1 of 28 in Coddy's Clean Code - Write better code using Python course.
Clean code is a set of rules that help to keep our code readable, maintainable, and extendable.
It's one of the most important aspects of writing good quality code.
Writing code is easy, but writing good, clean code is hard.
Clean code is:
- Easy to understand
- More efficient
- easier to maintain, scale, refactor and debug
Try it yourself
This lesson doesn't include a code challenge.