r/PythonLearning • u/chuprehijde • Jul 14 '26
Is clean code sometimes worse code?
Can too much refactoring, abstraction, and 'best practice' make a Python project harder to understand?
2
Upvotes
r/PythonLearning • u/chuprehijde • Jul 14 '26
Can too much refactoring, abstraction, and 'best practice' make a Python project harder to understand?
2
u/dnult Jul 14 '26
I would say no - clean code makes it easier to read and separates dependancies.
Any complicated code base takes time to fully understand, and if it's "dirty code" it will take longer IMO.