I've used Python sparingly, so maybe I'm just not privy to some verbiage. Someone at a talk today said that they want to avoid "dynamic assignment of an attribute" and didn't provide an example.
I know what dynamically creating an attribute of a class means, but what does dynamic assignment mean? This seems to imply that there's static assignment in python, but python is a dynamically typed language.
Typically, this means that the attribute itself is created dynamically as a string then assigned to an instance: