Skip to content

Instantly share code, notes, and snippets.

@maxclark
Created August 26, 2019 18:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save maxclark/6872d1dfdc8866e1abf9612d261326e1 to your computer and use it in GitHub Desktop.
Save maxclark/6872d1dfdc8866e1abf9612d261326e1 to your computer and use it in GitHub Desktop.
Random number generator in Python
#!/usr/bin/env python
from random import randint
for i in range(20):
print(randint(11111,99999))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment