random.setstate(state)
state should have been obtained from a previous call to getstate()
, and setstate()
restores the internal state of the generator to what it was at the time getstate()
was called.
random.setstate(state)
state should have been obtained from a previous call to getstate()
, and setstate()
restores the internal state of the generator to what it was at the time getstate()
was called.
Please login to continue.