from matplotlib.pyplot import *
temps=[4,1,3,8,2,8,1,6,7,10]
hist(temps,bins=[0,2,4,9,12])
show()
