I have a simple class with 50+ attributes. All of them will be set up as empty string when the class is created. What is the best pythonic way of doing it?
Should it be like that?
att1 = att2 = att3 ... = att100 = ''
Or:
att1 = ''
att2 = ''
...
att100 = ''