Skip to content

Instantly share code, notes, and snippets.

@fritzvd
Created September 3, 2015 07:57
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