Last active
February 1, 2017 22:01
-
-
Save NickWoodhams/f1bb126b95b6f9931e621d8650ea62f3 to your computer and use it in GitHub Desktop.
Generate a tuple with two random ints between 0 and 1000
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #! /usr/bin/python | |
| from random import randint | |
| r1 = randint(0, 1000) | |
| r2 = randint(0, 1000) | |
| print(r1, r2) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment