Skip to content

Instantly share code, notes, and snippets.

@jimfinnis
Created August 30, 2015 15:04
Show Gist options
  • Save jimfinnis/a6ff1184d7d40fc7e914 to your computer and use it in GitHub Desktop.
Save jimfinnis/a6ff1184d7d40fc7e914 to your computer and use it in GitHub Desktop.
f = open('jokes.txt','r')
jokes = [x.strip() for x in f.read().split('%%')]
...
j = random.choice(jokes)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment