I am porting the application from python 2 to python 3 and encountered the following problem: random.randint returns different result according to used Python versi
You can specify which version to use for the seed: random.seed(1, version=1). However, as stated by Sparky05, you are probably better off using numpy.random instead.