Skip to content

Instantly share code, notes, and snippets.

@daedalus
Created May 24, 2018 21:31
Show Gist options
  • Save daedalus/314753a0e2dd991c26fece6bace61dbd to your computer and use it in GitHub Desktop.
Save daedalus/314753a0e2dd991c26fece6bace61dbd to your computer and use it in GitHub Desktop.
ColdTi
numbers = "207 58 321 1785 49 610 3 845 97 2038 114 78"
numbers += "93 108 754 61 1498 50 1364 88 348 9 25 707"
words = []
fp = open('english.txt')
for line in fp:
words.append(line.rstrip())
tmp = ""
for i in numbers.split(" "):
tmp+= "%s " % words[int(i)-1]
print tmp
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment