Skip to content

Instantly share code, notes, and snippets.

@lowellbander
Created July 19, 2016 13:51
Show Gist options
  • Select an option

  • Save lowellbander/eb503989d4918aeedd6a2bd6c4c84c50 to your computer and use it in GitHub Desktop.

Select an option

Save lowellbander/eb503989d4918aeedd6a2bd6c4c84c50 to your computer and use it in GitHub Desktop.
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