I have two lists, one for attributes the other for statistics:
l1 = ['speed', 'accel']
l2 = ['min', 'max', 'mean', 'std']
I want to generate this expanded list of attributes' statistics:
l3 = ['speed_min', 'speed_max', 'speed_mean', 'speed_std', 'accel_min', 'accel_max', 'accel_mean', 'accel_std']
In that order.