fork download
  1. import numpy
  2. import matplotlib.pyplot as plt
  3.  
  4. x = numpy.random.uniform(0.0, 5.0, 250)
  5.  
  6. plt.hist(x, 5)
  7. plt.show()
Success #stdin #stdout 0.67s 55956KB
stdin
Standard input is empty
stdout
Standard output is empty