Missing Vowels - Football Player Name Game Archive

One from the archives, I used to run a twitter bot that would tweet a footballer’s name with the vowels, spaces and hyphens removed and then tweet the answer a few minutes later.

The bit of python to do this was

stripped = str.maketrans(dict.fromkeys('aeiouAEIOU -'))
hidden_name = name.translate(stripped)

Here’s also a handy method for making an anagram of a string

 def get_anagram_of_string(name):
  letters = list(name)
   random.shuffle(letters)
   return ''.join(letters)

// Published: , with 123 words. 0 mentions.

No webmentions were found.