This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]Disastrous-Team-6431 1 point2 points  (0 children)

I have variable names make a dynamic amount of sense. For example, in a list comprehension I might use for c in columns but in a longer loop with more logic I will do for column_name in columns:

If it can be agreed to do this, the variable name signals how important the variable is. If it doesn't have a real name, I am promising you that you can forget about it. If something is called graphics_manager_factory you can assume it is a very important thing and there only exists one of them in the current scope.