, , Mersenne Twister , . python linux , , ( ) random.SystemRandom(). SystemRandom , .
:
import random
myrandom = random.SystemRandom
x = myrandom.random
dump x out to file...
,
import random
read x from file...
newseed = int(x*(2**31))
random.seed(newseed)
nextran = random.random()
nextran = random.random()...