Skip to content

Instantly share code, notes, and snippets.

@tomswartz07
Created June 24, 2014 00:13
Show Gist options
  • Save tomswartz07/8d4147bf1e71fa3b6445 to your computer and use it in GitHub Desktop.
Save tomswartz07/8d4147bf1e71fa3b6445 to your computer and use it in GitHub Desktop.
EdTech.py
#!/usr/bin/python
import random
words = ['gamification', 'informal', 'learning', 'individualized', 'E-', 'Differentiated', 'Massive open online course', 'virtual', 'environment']
choices = [random.choice(words) for _ in range(10)]
print(' '.join(choices))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment