Created
July 8, 2021 09:10
-
-
Save railroadman/e9972372740c52a0f7e606a5d94d4dfb to your computer and use it in GitHub Desktop.
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
from random import sample | |
numbers = range(1,200) | |
for _ in range(10): | |
print(sample(numbers,5)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment