Skip to content

Instantly share code, notes, and snippets.

@chinskiy
Created June 4, 2019 08:35
Show Gist options
  • Select an option

  • Save chinskiy/7c977e11ce5588a33668b2d9503fed8b to your computer and use it in GitHub Desktop.

Select an option

Save chinskiy/7c977e11ce5588a33668b2d9503fed8b to your computer and use it in GitHub Desktop.
# Python 2.7.16
In [1]: import random
...: random.seed('some_seed')
...: random.randint(1, 100)
Out[1]: 45
# Python 3.7.3
In [1]: import random
...: random.seed('some_seed', version=1)
...: random.randint(1, 100)
Out[1]: 57
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment