Flyweight pattern
The flyweight pattern is a memory optimization pattern. Novice Python programmers tend to ignore memory optimization, assuming the built-in garbage collector will take care of them. This is often perfectly acceptable, but when developing larger applications with many related objects, paying attention to memory concerns can have a huge payoff.
In real life, the flyweight pattern is often implemented only after a program has demonstrated memory problems. It may make sense to design an optimal configuration from the beginning in some situations, but bear in mind that premature optimization is the most effective way of ensuring that your program is too complicated to maintain.
The basic idea behind the flyweight pattern is to ensure that objects that share a state can use the same memory for that shared state. Think of an inventory system for car sales. Each individual car has a specific serial number and is a specific color. But most of the details about that car are the same...