from statistics import mean from data2 import trials, fancy print('\\tabrule Size & Interruption & Reclusive & Dead & Pits formed &\ Nearest Neighbor (avg) & Width (avg) & Depth (avg)\\cr\\tabrule') for trial in trials: print('& '.join(['$'+'\\times'.join([str(el) for el in trial.size])+'$', names[trial.method], str(trial.recl), str(trial.dead), str(len(trial.pits)), '%.2f' % mean(trial.nearest_neighbor()), '%.2f' % mean([pit.diam for pit in trial.pits]), '%.2f' % mean([pit.depth for pit in trial.pits])])+'\\cr\\tabrule')