Common Python Anti-Patterns to watch out for
Anti-patterns which will make you more mindful while writing code.
In software, anti-pattern is a term that describes how NOT to solve recurring problems in your code. Anti-patterns are considered bad software design, and are usually ineffective or obscure fixes.
Below are a few Python anti-patterns that I have encountered/rectified upon. Learning about these…