Skip to content

Instantly share code, notes, and snippets.

@fritzvd
Created September 3, 2015 07:57
Show Gist options
  • Save fritzvd/7a7efa80aceda0a10c44 to your computer and use it in GitHub Desktop.
Save fritzvd/7a7efa80aceda0a10c44 to your computer and use it in GitHub Desktop.
import random
entity = [
'The Flying Spaghetti Monster',
'Richard Dawkins',
'Vishnu',
'Shiva',
'Allah',
'God',
'Het Universum',
'Kanye West',
'Buddha',
'Putin',
]
god = entity[int(random.random() * len(entity))]
print('Zoals {placeholder} het wil'.format(placeholder=god))
@sjvrijn
Copy link

sjvrijn commented Jun 11, 2018

god = random.choice(entity)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment