Created
July 19, 2016 13:51
-
-
Save lowellbander/eb503989d4918aeedd6a2bd6c4c84c50 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 randint as rand | |
| numbers_dict = {} | |
| while len(numbers_dict) < 20: | |
| numbers_dict[rand(1, 60)] = "lowell & kelly forever" | |
| numbers = numbers_dict.keys() | |
| numbers.sort() | |
| print(numbers) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment