정승아forCodeSnapcodesnapmag.hashnode.dev·Sep 24, 2024일관성을 좋은 코드의 척도로 꼽는 이유원문: Joseph Gefroh, "Why consistency is one of the top indicators of good code" 일관성은 소프트웨어를 만들어나가며 제가 가장 중요하게 여기는 원칙 중 하나라 할 수 있습니다. 저는 여러 경험을 통해 일관성이 다른 어떤 원칙보다 유지보수성을 나타내는 지표로서 다른 어떤 원칙보다 훨씬 더 중요한 의미를 지니며, 일관되게 구축된 시스템이 그렇지 않은 시스템보다 유지보수가 더 쉽다는 것을 ...3 likesSeptember 2024good_code
Umair Maratabumairmaratab.hashnode.dev·May 25, 2023Python Code Style Guide: Write readable codecode is read much more often than it is written. You must make your code readable so when someone else or you after a month sees your code you know what it's doing. Style Guides Indentation Use 4 spaces per indentation level. Example when calling t...11 likesgood practices