System: Simulating Discrete events for 100 steps with number of events 10; I am using Spyder(Python 3.6); New to python!
Question: Can I generate different random numbers for each step in my loop? I need my random number between (0,1) and for each step, random number should be dynamically generated. I "don't" want random numbers to be repeated.
I am using the command; import numpy as np r = np.random.rand()
Any help regarding this problem is much appreciated.