Skip to content

Instantly share code, notes, and snippets.

@gregsabo
Created November 2, 2013 05:11
Show Gist options
  • Save gregsabo/7275778 to your computer and use it in GitHub Desktop.
Save gregsabo/7275778 to your computer and use it in GitHub Desktop.
Source code for "Middle America"
import random
choices = (
"why",
"Why",
"why?",
"why.",
"Why...",
)
choices = choices * 30 + ("why!?", "why...\n\n", "why?\n\n")
for i in range(50000):
print random.choice(choices),
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment