results_histogram_total=list(numpy.histogram(freq,bins=numpy.arange(0,6.1,.1))[0])
sum_total=sum(results_histogram_total)
big_set=[]
for i in results_histogram_total:
big_set.append(100*(i/sum_total)
is there a shorter way i can write the for loop to append the values?