Skip to content

Instantly share code, notes, and snippets.

@astro313
Created September 8, 2016 20:57
Show Gist options
  • Save astro313/37997111b0ab948155ddc7a13156e99e to your computer and use it in GitHub Desktop.
Save astro313/37997111b0ab948155ddc7a13156e99e to your computer and use it in GitHub Desktop.
Pick people for gal lunch randomly
import random
peeps = [
'Dominik',
'Martha',
'Gordon',
'Thomas',
'Henrik',
'Tyler',
'Luke',
'Amit',
'Riccardo',
'Matt',
'Cody',
'Avani',
'Daisy'
]
while len(peeps) > 0:
lucky = random.choice(peeps)
print lucky
peeps.remove(lucky)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment