I'm getting to a comfortable pipeline for the monsters. So far 4/50 done.
As for using classes I'm trying to figure out the advantages. I ran a benchmark test and they're a bit slower to use. I guess attaching functions to the objects could be useful.
Code:
Data Types Benchmarking Test: TestNumber: 10000 TestData: ['string', 45, 213, 'flag'] Make a list of Lists: 0.00896666615881 Make a list of Dicts: 0.0205114743512 Make a list of classes: 0.0233675179952 Reading the lists: 0.00368395061378 Reading the dicts: 0.00413803981428 Reading the classes: 0.00895489892719
Comment